Re: Baby Steps
- Posted by euphoric (admin) Nov 24, 2010
- 1812 views
tbohon said...
I'm very much a 'newbie' to gui apps in Euphoria.
Are you a newbie to GUI apps in general, or just to Euphoria specifically. Programming GUI apps is a different paradigm than programming, say, console apps.
tbohon said...
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.
Since you're using the IDE, right click on the button and choose "Edit Code" (or whatever the command is). When the editor pops up, make sure you are in the "onClick" event. If not, go ahead and select it on the left. Then add this code:
setText( lblTest, "Hello" )
Run it and it should work.
Let us know! :)
P.S. This might also help.