Jump to content

Chatbox GUICtrlSetData


Recommended Posts

Use $something = GUICtrlCreateInput(......) then GUICtrlRead($something) then like crea

;Create the controls
$edit = GuiCtrlCreateEdit("", 40, 60, 310, 150)
$name = GuiCtrlCreateInput("", 40, 10, 100, 20)
$text = GuiCtrlCreateInput("", 40, 220, 300, 20)

;Read the inputs and input it to the edit box
GUICtrlSetData($edit, GUICtrlRead($name) & ": " & GUICtrlRead($text))
Edited by BPBNA
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...