Ok, I can not seem to get edittext to work.
=============================================
sub globals
Dim Button1500a As Button
Dim EditText1502a As EditText
sub activty create
EditText1502a.Initialize("test")
Sub Button1500a_Click
EditText1502a.text = ""
=============================================
So I created a layout with 1 panel full of edittexts. One of them is 'EditText1502a". I dim it, then initilize it. On the page is a button "1500a_click" so when you click on the button it is supposed to clear "edittext1502a". So what am I doing wrong?
1) i thought by initializing it with "test" that it woul dhave that text in there. It does not
2) I though EditText1502a.text = "" or EditText1502a.text = " " would clear out the edittxt box. It does not. So what am I missing?
=====================================
BTW: after 2 years ago of buying this program, the instructions still suck. When are you all going to get a company to write a book on how to program with it? The forems and PDF are too advanced for the rest of us. Remember that the B in BASIC stands for Beginners.
Thanks
=============================================
sub globals
Dim Button1500a As Button
Dim EditText1502a As EditText
sub activty create
EditText1502a.Initialize("test")
Sub Button1500a_Click
EditText1502a.text = ""
=============================================
So I created a layout with 1 panel full of edittexts. One of them is 'EditText1502a". I dim it, then initilize it. On the page is a button "1500a_click" so when you click on the button it is supposed to clear "edittext1502a". So what am I doing wrong?
1) i thought by initializing it with "test" that it woul dhave that text in there. It does not
2) I though EditText1502a.text = "" or EditText1502a.text = " " would clear out the edittxt box. It does not. So what am I missing?
=====================================
BTW: after 2 years ago of buying this program, the instructions still suck. When are you all going to get a company to write a book on how to program with it? The forems and PDF are too advanced for the rest of us. Remember that the B in BASIC stands for Beginners.
Thanks
Last edited: