voila j'ai une question: Est-il possible de créer un deuxieme gui en appuiyant sur un buton dans le premier gui
j'ai donc 2 boutons dans le gui principal:
Code : Tout sélectionner
$Button_1 = GUICtrlCreateButton ("OK", 120, 251, 50)
$Button_2 = GUICtrlCreateButton ("Annuler ", 171, 251, 60)
Code : Tout sélectionner
While 1
$msg = GUIGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
Case $msg = $Button_2
ExitLoop
EndSelect
Wend
j'ai tenté ceci sans résultat:
Code : Tout sélectionner
Func Button_1 ()
GUICreate("Rappel", 350,300)
GUISetState(@SW_SHOW)
EndFunc
Ciao