Quote:
Originally Posted by MoepMeep
"c bzw c++ is halt eben noch ein wenig schwerer als c" jo, ist klar. C ist schwerer als C..^^
|
sry ich meinte natürlich schwerer als autoit
Quote:
Originally Posted by stefan654
if anyone could give me an example, on how i make a gui working
...that would be nice -.-
|
PHP Code:
#include <GUIConstants.au3> ;can't be wrong ;)
$Form1 = GUICreate("Form1", 181, 132, 193, 125) ;creates the GUI
GUISetState(@SW_SHOW) ;as you want to see the GUI
While 1 ;keeps it alive
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE ;if you might want to close the GUI again
Exit
EndSwitch
WEnd