Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.

Get PC INformations

[es] :: Visual Basic 6 :: Get PC INformations

[ Pregleda: 2189 | Odgovora: 10 ] > FB > Twit

Postavi temu Odgovori

Autor

Pretraga teme: Traži
Markiranje Štampanje RSS

h4ckon3
hack one
////

Član broj: 164247
Poruke: 62
*.adsl.net.t-com.hr.



Profil

icon Get PC INformations19.01.2008. u 14:55 - pre 197 meseci
kako u vb napraviti da se u richtextbox napise info od kompu... tj hostname, koji printer imam i to...

za printer potrebno obavazno!
 
Odgovor na temu

Aleksandar Ružičić
Software Architect, Appricot d.o.o.
Beograd

Član broj: 26939
Poruke: 2881

Jabber: krckoorascic@gmail.com
Sajt: krcko.net


+44 Profil

icon Re: Get PC INformations19.01.2008. u 15:52 - pre 197 meseci
potrazi u msdnu
 
Odgovor na temu

h4ckon3
hack one
////

Član broj: 164247
Poruke: 62
*.adsl.net.t-com.hr.



Profil

icon Re: Get PC INformations19.01.2008. u 16:47 - pre 197 meseci
jesam, samo nisam nasao...
 
Odgovor na temu

djpero.84
Pero Knezevic
Prijedor

Član broj: 120188
Poruke: 190
87.250.103.*

Sajt: www.littlefrog.ba


Profil

icon Re: Get PC INformations19.01.2008. u 19:20 - pre 197 meseci
Ime defaultnog printera:

Code:
Printer.DeviceName
 
Odgovor na temu

h4ckon3
hack one
////

Član broj: 164247
Poruke: 62
*.adsl.net.t-com.hr.



Profil

icon Re: Get PC INformations20.01.2008. u 16:44 - pre 197 meseci
jel zna tko kako saznat windows usera na koji sam prijavljen
 
Odgovor na temu

Aleksandar Ružičić
Software Architect, Appricot d.o.o.
Beograd

Član broj: 26939
Poruke: 2881

Jabber: krckoorascic@gmail.com
Sajt: krcko.net


+44 Profil

icon Re: Get PC INformations21.01.2008. u 12:36 - pre 197 meseci
opet: pogledaj msdn ;)
 
Odgovor na temu

h4ckon3
hack one
////

Član broj: 164247
Poruke: 62
*.adsl.net.t-com.hr.



Profil

icon Re: Get PC INformations21.01.2008. u 13:13 - pre 197 meseci
opet: sorry al nisan nasao...
 
Odgovor na temu

Aleksandar Ružičić
Software Architect, Appricot d.o.o.
Beograd

Član broj: 26939
Poruke: 2881

Jabber: krckoorascic@gmail.com
Sajt: krcko.net


+44 Profil

icon Re: Get PC INformations21.01.2008. u 22:54 - pre 197 meseci
pretrazi malo bolje, jer na tom mestu mora da ima, a na drugim mozda ima ;)

trazi get device info, ili npr get printer info (trazi u Platform SDK-u, ne u dokumentaciji za .NET)
 
Odgovor na temu

Eurora3D Team
Nebojsa - Programer & Vodja tima
Beograd

Član broj: 120376
Poruke: 900
195.252.105.*



+7 Profil

icon Re: Get PC INformations22.01.2008. u 00:14 - pre 197 meseci
Ovo ti je fn za dobijanje trenutnog Usera

Code:

Public Declare Function GetUserName Lib "advapi32.dll" Alias "GetUserNameA" (ByVal lpBuffer As String, nSize As Long) As Long

Function CurrentUser() As String
On Error Resume Next
Dim UserName As String, NameLength As Long, ReturnVal As Long
UserName = Space$(255)
NameLength = 255
ReturnVal = GetUserName(UserName, NameLength)
If ReturnVal <> 0 Then
    CurrentUser = Mid(UserName, 1, NameLength)
Else
    CurrentUser = "N/A"
End If
CurrentUser = Replace(CurrentUser, Chr(0), "")
End Function

 
Odgovor na temu

h4ckon3
hack one
////

Član broj: 164247
Poruke: 62
*.adsl.net.t-com.hr.



Profil

icon Re: Get PC INformations22.01.2008. u 13:21 - pre 197 meseci
e hvalaaa...ako netko jos nesto zna neka rece...
 
Odgovor na temu

Eurora3D Team
Nebojsa - Programer & Vodja tima
Beograd

Član broj: 120376
Poruke: 900
*.opera-mini.net.



+7 Profil

icon Re: Get PC INformations23.01.2008. u 02:50 - pre 197 meseci
Pretrazi forum za ostalo. Ja sam jednom postavio kod za to ovde na VB forumu.
 
Odgovor na temu

[es] :: Visual Basic 6 :: Get PC INformations

[ Pregleda: 2189 | Odgovora: 10 ] > FB > Twit

Postavi temu Odgovori

Navigacija
Lista poslednjih: 16, 32, 64, 128 poruka.