Jump to content

Wizard


Recommended Posts

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 by PcExpert
Link to comment
Share on other sites

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 by Valuater

NEWHeader1.png

Link to comment
Share on other sites

  • Moderators

[ code] [/ code] :) (even in an explination... isn't that what you say :mellow:)

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.

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...