[GUIDA] autoit, by Fraev

« Older   Newer »
  Share  
MatteoJug
CAT_IMG Posted on 12/8/2009, 09:12 by: MatteoJug     +1   -1




GUISetState(@SW_SHOW) serve per mostrare la finestra creata con GuiCreate();
Non si chiude perchè non c'è un controllo sulle azione sulla GUI, per farlo funzionare:
CODICE
#include <GUIConstants.au3>
GUICreate ("Programmino  AutoIT by Francoiky", 216, 132 )
GUICtrlCreateLabel ("Hello World!", 2, 2)
GUISetState(@SW_SHOW)
While GuiGetMsg()<>-3
WEnd


Per l'ultima cosa, stesso concetto di prima (GUiGetMsg())
PS: -3 sarebbe GUI_EVENTCLOSE
 
Top
94 replies since 24/2/2008, 11:09   44886 views
  Share