Jump to content

Recommended Posts

Posted

Hello World!!!, please I need help I wanted to read the GUICreateInput, I don't know whats wrong with my script.

 

#include <GUIConstantsEx.au3>
#include <GUIListView.au3>
#include <GUIListViewEx.au3>


GUICreate("My GUI", 300, 100)
GUISetState(@SW_SHOW)

Local $sInput = GUICtrlCreateInput("", 150, 50, 50, 20)
Local $sRead = GUICtrlRead($sInput,0)
Local $sAdd = GUICtrlCreateButton("Read", 80, 50, 50, 20)

While 1

    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            ExitLoop

        Case $iAdd
            MsgBox(0, "Input!!!", $sRead)

    EndSwitch

WEnd

 

ill get to that... i still need to learn and understand a lot of codes graduated.gif

Correct answer, learn to walk before you take on that marathon.

Posted (edited)

Should be:

#include <GUIConstantsEx.au3>
#include <GUIListView.au3>
#include <GUIListViewEx.au3>

GUICreate("My GUI", 300, 100)
Local $sInput = GUICtrlCreateInput("", 150, 50, 50, 20)
Local $sAdd = GUICtrlCreateButton("Read", 80, 50, 50, 20)
GUISetState(@SW_SHOW)
While 1
    Switch GUIGetMsg()
        Case $GUI_EVENT_CLOSE
            ExitLoop
        Case $sAdd
            $sRead = GUICtrlRead($sInput, 0)
            MsgBox(0, "Input!!!", $sRead)
    EndSwitch
WEnd

 

Edited by water

My UDFs and Tutorials:

  Reveal hidden contents

 

  • Moderators
Posted

232showtime,

You need to read the input after the button has been pressed - at the moment you are doing so as it is created, when it will always be empty.

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

  Reveal hidden contents

 

Posted

OMG!!!:sweating:

duly noted...

thanks water, melba...

ill get to that... i still need to learn and understand a lot of codes graduated.gif

Correct answer, learn to walk before you take on that marathon.

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
×
×
  • Create New...