I have this error
Message non found TBTNBMP:CTOOLTIP
//----------------------------------------
#include "FWCE.ch"
function Main()
local oDlg, oFld, cValue ,oB
DEFINE DIALOG oDlg NAME 'TestFld'
REDEFINE FOLDER oFld ID 800 OF oDlg;
PROMPTS "One", "Two" ;
DIALOGS "sub1", "sub2"
REDEFINE COMBOBOX cValue ID 100 OF oFld:aDialogs[ 1 ] ;
ITEMS { "Red", "Green", "Blue" }
REDEFINE BUTTON ID 110 OF oFld:aDialogs[ 1 ] ACTION oFld:SetOption(2)
REDEFINE BTNBMP oB ID 111 OF oFld:aDialogs[2] ;
RESOURCE "users"
ACTIVATE DIALOG oDlg CENTERED ;
ON INIT oFld:InitDialogs() // required to initialize the resources dialogs !
return nil