GitHub_collection_hello-world/v/visualfoxpro.prg
Richie Bendall ad16f6d78a
Normalize printed text
Signed-off-by: Richie Bendall <richiebendall@gmail.com>
2020-03-30 04:21:52 +13:00

18 lines
277 B
Plaintext
Executable File

* Message Box:
MESSAGEBOX("Hello World")
* Print to screen:
? "Hello World"
* GUI:
loForm = CREATEOBJECT("HiForm")
loForm.Show(1)
DEFINE CLASS HiForm AS Form
AutoCenter = .T.
Caption = "Hello World"
ADD OBJECT lblHi as Label ;
WITH Caption = "Hello World"
ENDDEFINE