Page 1 of 1
Retrieve from edit box
Posted: Mon Feb 28, 2011 10:25 am
by cvirus
how to get the value from a edit when a button is pushed?
or how to get values from the several windows objects?
Thank you. ::)
Retrieve from edit box
Posted: Mon Feb 28, 2011 10:55 pm
by Bob Hays
Lets say you have an edit control called "EditBox1" and a string variable "S".
S=EditBox1.Text
If the Text is a number then convert the text into a number with val(EditBox1.Text).
Retrieve from edit box
Posted: Tue Mar 01, 2011 8:10 pm
by cvirus
Thank you for the reply, this is like vb, and is it the same for the other windows objects?
Thank you. :D