PcExpert Posted March 21, 2006 Posted March 21, 2006 (edited) Hello, How to create a wizard? For example you excute the program first-test.exe and then a wizard wil appear then you can click next cancel and prev. I mean something like a install wizard, but then with my own info in it. Thanks, PcExpert Edited March 21, 2006 by PcExpert
Valuater Posted March 21, 2006 Posted March 21, 2006 maybe thishttp://www.autoitscript.com/forum/index.ph...st=0&p=1153708)
PcExpert Posted March 21, 2006 Author Posted March 21, 2006 Yes, that what I mean. Can somebody explain to me how to create more childrens?
Valuater Posted March 21, 2006 Posted March 21, 2006 (edited) EASY... change this Dim $show = 0, $Child_[11], $children = 10 to... Dim $show = 0, $Child_[12], $children = 11 then copy the last child $Child_[10] = GuiCreate("", 508, 238, 1, 1, BitOr($WS_CHILD,$WS_TABSTOP)+$WS_DLGFRAME ,-1, $main) $Label_1 = GuiCtrlCreateLabel("Child 10..... You Must be Nuts if you have ... 10 Children!!!", 50, 100, 390, 30) GUICtrlSetFont(-1, 10, 650) GuiSetState(@SW_HIDE) and make it 11 $Child_[11] = GuiCreate("", 508, 238, 1, 1, BitOr($WS_CHILD,$WS_TABSTOP)+$WS_DLGFRAME ,-1, $main) $Label_1 = GuiCtrlCreateLabel("Child 10..... You Must be Nuts if you have ... 10 Children!!!", 50, 100, 390, 30) GUICtrlSetFont(-1, 10, 650) GuiSetState(@SW_HIDE) 8) Edited March 21, 2006 by Valuater
Moderators SmOke_N Posted March 21, 2006 Moderators Posted March 21, 2006 [ code] [/ code] (even in an explination... isn't that what you say ) Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
Valuater Posted March 21, 2006 Posted March 21, 2006 [ code] [/ code] (even in an explination... isn't that what you say ) happy now? lol 8)
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now