Jump to content

Recommended Posts

Posted

look at this

GUICtrlSetData($input, "z")
GUICtrlSetData($input, "x")

When i try this code, the z will be replaced by x. Can you do this without replacing the previous letters?

Posted (edited)

try something like...

$var = GUICtrlRead($input)
GUICtrlSetData($input,$var & "123")
Edited by k3v
Posted

Something like this I believe. Untested

GUICtrlSetData($input, "z")
GUICtrlSetData($input, GUICtrlRead($input)&"x")

Kerros===============================================================How to learn scripting: Figure out enough to be dangerous, then ask for assistance.

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
  • Recently Browsing   0 members

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