» »

vb6

vb6

jzupevc ::

Kaka je procedura oziroma funkcija v VB6 za restart PC

Gandalfar ::

ExitWindowsEx

Zzzzzzz ::

Funkcije same, ki bi to delala v VB-ju ni. Je treba psoeči po API funkcijah. Poglej spodnji primer:



'In general section
Const EWX_LOGOFF = 0
Const EWX_SHUTDOWN = 1
Const EWX_REBOOT = 2
Const EWX_FORCE = 4
Private Declare Function ExitWindowsEx Lib "user32" (ByVal uFlags As Long, ByVal dwReserved As Long) As Long

Private Sub Form_Load()
'KPD-Team 1998
'URL: http://www.allapi.net/
'E-Mail: KPDTeam@Allapi.net
msg = MsgBox("This program is going to reboot your computer. Press OK to continue or Cancel to stop.", vbCritical + vbOKCancel + 256, App.Title)
If msg = vbCancel Then End
'reboot the computer
ret& = ExitWindowsEx(EWX_FORCE Or EWX_REBOOT, 0)
End Sub

StratOS ::

ja za navadne windowse, za NT moreš pa še security tokene uštimat .


Vredno ogleda ...

TemaSporočilaOglediZadnje sporočilo
TemaSporočilaOglediZadnje sporočilo
»

[C#] Prosim pomagajte! Potrebujem program, ki bi pobiral podatke iz ene strani

Oddelek: Programiranje
212733 (2343) David1994
»

API+VB

Oddelek: Programiranje
262082 (1786) webblod
»

Odpiranje dat.exe v VB

Oddelek: Programiranje
122978 (2771) webblod
»

Visual basic Progress bar

Oddelek: Programiranje
51556 (1489) Lunik
»

Windows 2000 (nujno)

Oddelek: Pomoč in nasveti
181131 (899) andrej

Več podobnih tem