does anyone has a sample how to browse a dbf with fiveweb ?
The following does not work, the browse is empty
- Code: Select all Expand view
- #include "FiveWeb.ch"
function Main()
local oDlg, oBtn, oBrw
SET THEME TO "humanity"
DEFINE DIALOG oDlg TITLE "Veranstaltungen" ;
SIZE 719, 397.5
@ 24, 8 BROWSE oBrw SIZE 729, 302 OF oDlg URL "zeus03/cgi-bin/Beleg.dbf"
@ 355, 10 BUTTON oBtn PROMPT "OK" SIZE 110, 40 OF oDlg
ACTIVATE DIALOG oDlg
return nil