---------- To be put in HelloWorld.form file ------------
# Gambas Form File 1.0
{ HelloWorld Form
Move(366,0,400,400)
Text = ("")
Border = Window.Fixed
{ Button1 Button
Move(40,64,320,176)
Text = ("Say &Hello")
}
}
---------- To be put in HelloWorld.class file ------------
' Gambas class file
PUBLIC SUB Button1_Click()
message ( "Hello World!")
END
submitted by: Ing. Vincenzo Virgilio