Re: Baby Steps
- Posted by DerekParnell (admin) Nov 23, 2010
- 1802 views
tbohon said...
The task I've set myself is to use EUIDE to create a simple form with two controls, a Label named 'lblTest" and a Button named 'btnClick'. When the button is clicked I simply want to change the contents of the label from whatever it is to "Hello".
I have the form created but can't seem to figure out the correct combination and sequence of Euphoria commands to make the above action happen.
On the click event for the button, use the setText routine.
For example:
procedure onClickbtnClick(integer self, integer event, sequence parms) setText(lblTest, "Hello") end procedure