Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Public oForm1
oForm1=Newobject("form1")
oForm1.AddObject("list1","list1")
oForm1.Show()
Define Class FORM1 As Form
autocenter = .t.
caption ="Bitmaps in a list box sample"
width = 200
height = 200
Procedure Init
Define Popup popRelatYes Relative From 1,1
Define Bar 1 Of popRelatYes Prompt 'Open';
FONT "TOMAHA",12;
STYLE "BI";
PICTURE "C:\OPEN.BMP"
Define Bar 2 Of popRelatYes Prompt "New";
FONT "GARAMOND",15;
STYLE "BU";
PICTURE "c:\new.bmp"
Endproc
Enddefine
Define Class list1 As ListBox
RowSource = "popRelatYes"
RowSourceType = 9
Visible = .T.
left = 20
top =20
Enddefine