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.
CREATE CURSOR myCursor (name c(20),lname c(20),fname c(20))
oForm = CREATEOBJECT("form")
oForm.addobject("Grid2","GRID1")
for each oColumn in oform.grid2.columns
oColumn.addobject("myheader1","_myheader")
endfor
oForm.show(1)
DEFINE CLASS grid1 as Grid
COLUMNCOUNT = 3
VISIBLE = .T.
recordsource = "mycursor"
ENDDEFINE
define class _myheader as header
procedure click
wait window TRANSFORM(this.parent.name)+" was clicked" nowait
endproc
enddefine