By mistake I entered an @ like the example into my code.
If I try to compile the code xHarbour.exe errors out.
Best regards,
Otto
- Code: Select all Expand view
- // Our first DialogBox sample
#include "FiveWin.ch"
function Main()
local oDlg, cTest := "Hello world! "
DEFINE DIALOG oDlg TITLE "I am a DialogBox" COLOR "W+/B" ;
ICON oIco
@ 1, 3 GET @cTest
@ 3, 16 BUTTON "&Cancel" SIZE 40, 12 ACTION oDlg:End()
ACTIVATE DIALOG oDlg
return nil