joeyone Posted May 2, 2008 Posted May 2, 2008 (edited) If i have this text: GUICtrlCreateLabel ("Message", 10, 10) and then for some reason want to change the "Message" to something else how do i do that? and i dont want to createanother one above isnts there a GUICtrlEditlabel or something i can use? Edited May 2, 2008 by joeyone
weaponx Posted May 2, 2008 Posted May 2, 2008 Your label first has to be assigned to a variable. $label = GUICtrlCreateLabel("Original text"...) GUICtrlSetData($label, "New text")
Zedna Posted May 2, 2008 Posted May 2, 2008 $label = GUICtrlCreateLabel ("Message", 10, 10) GUICtrlSetDatal ($label, "Message 2") Resources UDF ResourcesEx UDF AutoIt Forum Search
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now