Merge pull request #283 from ericcholis/patch-1

Visual FoxPro
This commit is contained in:
Mike Donaghy
2017-02-12 16:06:21 -06:00
committed by GitHub

17
v/visualfoxpro.prg Normal file
View File

@@ -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