diff --git a/v/visualfoxpro.prg b/v/visualfoxpro.prg new file mode 100644 index 00000000..906451d7 --- /dev/null +++ b/v/visualfoxpro.prg @@ -0,0 +1,17 @@ +* 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