Page 1 of 1

Problem with REDEFINE BTNBMP

PostPosted: Thu Apr 20, 2006 7:31 am
by Maurizio
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

PostPosted: Thu Apr 20, 2006 10:05 am
by Antonio Linares
Maurizio,

We have just published a new FWPPC build that should solve it.

PostPosted: Thu Apr 20, 2006 1:41 pm
by Maurizio
Hello Antonio

now is ok , but ther are other problem .

The proprite RESNAME, FONT, PROMPT ecc. dont work .

Maurizio

PostPosted: Thu Apr 20, 2006 4:19 pm
by Antonio Linares
Maurizio,

Please provide a sample to reproduce the error. Thanks,

PostPosted: Fri Apr 21, 2006 6:48 am
by Maurizio
Now I solve
Thank