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