Jump to content

wizzard


Recommended Posts

Okay i would like to create a wizzard that asks for your pop3 and smtp server and automaticly inserts this into outlook as a new account.

The part of inserting this into outlook is not a problem

Creating a gui as wizzars is the part that bothers me.

How do i create a wizzard window?

#include <GuiConstants.au3>

GuiCreate("Mail Wizzard", 560, 403,-1, -1 , BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS))

$Button_1 = GuiCtrlCreateButton("Back", 20, 360, 190, 40)
$Button_2 = GuiCtrlCreateButton("Next", 350, 360, 190, 40)

GuiSetState()
While 1
    $msg = GuiGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
        ExitLoop
    Case Else
        ;;;
    EndSelect
WEnd
Exit

This is what i would like, if you press next there will open a new page.

I could do this by creating a new gui but i think there should be a better way.

any help?

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...