Visual FoxPro
Multiple Visual FoxPro samples, taken from https://en.wikipedia.org/wiki/Visual_FoxPro
This commit is contained in:
17
v/visualfoxpro.prg
Normal file
17
v/visualfoxpro.prg
Normal 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
|
||||||
Reference in New Issue
Block a user