Jump to content

easy GUI question


AceLoc
 Share

Recommended Posts

$gui = GuiCreate("Bootleggers Bot - By: Jimmy ", 240, 140,-1, -1 , BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS))

$Label_1 = GuiCtrlCreateLabel("Username:", 10, 10, 60, 20)
$Label_2 = GuiCtrlCreateLabel("Password:", 10, 40, 60, 20)
$Input_3 = GuiCtrlCreateInput("", 80, 10, 140, 20)
$Input_4 = GuiCtrlCreateInput("", 80, 40, 140, 20)
$Progress_6 = GuiCtrlCreateProgress(10, 70, 220, 20)
$Button_7 = GuiCtrlCreateButton("Submit", 10, 110, 100, 23)
$Button_8 = GuiCtrlCreateButton("Cancel", 130, 110, 100, 23)

GuiSetState()
While 1
    $msg = GuiGetMsg()
    Select
    Case $msg = $GUI_EVENT_CLOSE
        ExitLoop
    Case $msg = $Button_8
        Exit
    Case $msg = $Button_7
        GUIDelete($gui)oÝ÷ Ù«­¢+ØÀÌØíÍAÍÍݽÉôÅÕ½ÐìÀÌØí%¹ÁÕÑ|ÐÅÕ½Ðì

but if i put something in.. the 'input' part then it wont work :whistle:!

Help PleasE!!

[quote name='AceLoc']I gots new sunglasses there cool.[/quote]

Link to comment
Share on other sites

to start with:

$sUsername = GuiCtlRead($Input_3)
$sPassword = GuiCtrlRead($Input_4)

Now if the controls still exist at the point you have that code then all should work well, but with what little you posted it looks like they may not.

SciTE for AutoItDirections for Submitting Standard UDFs

 

Don't argue with an idiot; people watching may not be able to tell the difference.

 

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