I have installed vs2022 and start to compile my app. (I have not removed the vs2019 yet.) hb_compiler() functions still says 19.27.xxxxxxx. I wonder if I'm doing something wrong.
- Code: Select all Expand view
- // Our first DialogBox sample
#include "FiveWin.ch"
function Main()
local oDlg, oIco, cTest := "Hello world! "
DEFINE ICON oIco FILE "..\icons\fivewin.ico"
DEFINE DIALOG oDlg TITLE hb_compiler() COLOR "W+/B" ;
ICON oIco
@ 1, 3 GET cTest
@ 3, 5 BUTTON "&Ok" SIZE 40, 12 ;
ACTION MsgInfo( "Any action here!" ) DEFAULT
@ 3, 16 BUTTON "&Cancel" SIZE 40, 12 ACTION oDlg:End()
ACTIVATE DIALOG oDlg CENTERED ;
VALID MsgYesNo( "Do you want to end ?" )
return nil
FUNCTION cFileNameNoExt(cText)
RETURN cFileNoExt(cText)
http://www.objekt.com.tr/fwh_test/vs2022.jpeg
Thanks.