Petite question sur le reboot

Petite question sur le reboot - Delphi/Pascal - Programmation

Marsh Posté le 05-06-2002 à 08:55:58    

je voudrais dans une application creer un bouton. si on cliquez dessus, je voudrait que ça reboote windows.
Comment faire..
 
merci

Reply

Marsh Posté le 05-06-2002 à 08:55:58   

Reply

Marsh Posté le 05-06-2002 à 09:01:24    

elle est en quoi ton appli?

Reply

Marsh Posté le 05-06-2002 à 09:25:12    

Il faut utiliser l'API ExitWindowsEx.
 
Exemple en VB :

Code :
  1. Private Declare Function ExitWindowsEx Lib "user32" (ByVal uFlags As Long, ByVal dwReserved As Long) As Long
  2. Private Sub Command1_Click()
  3.     Const EWX_REBOOT = 2
  4.     Dim EWEReturn As Long
  5.     EWEReturn = ExitWindowsEx(EWX_REBOOT, vbLong)
  6. End Sub


en C/C++, même topo :

Code :
  1. (...)
  2. case WM_CLICK: // on clique sur le bouton
  3.    ExitWindowsEx(EWX_REBOOT, 0)
  4. (...)


---------------
J'ai un string dans l'array (Paris Hilton)
Reply

Marsh Posté le 05-06-2002 à 17:28:33    

Mon application est développée avec delphi :wahoo:  
 
sinon je vais tester  
merci

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed