Page 1 of 1

Thanks to james bott

Posted: Mon Aug 11, 2008 12:24 pm
by Silvio
I had problems with tsbutton of Mercado.

the problem was on my application not refresh the message of tooltip

After many test james founded an error to my problem.

the sbutton class use two different tooltip variable.
obt:ctiptool and btn:ctooltip
We not know why mercado not unique this variable.

thanks to james.

Re: Thanks to james bott

Posted: Mon Aug 11, 2008 12:57 pm
by Patrick Mast
Hey Silvio,

Silvio wrote:I had problems with tsbutton of Mercado. the problem was on my application not refresh the message of tooltip. After many test james founded an error to my problem. the sbutton class use two different tooltip variable. obt:ctiptool and btn:ctooltip
The "standard" is oObj:cTooltip

Patrick

Posted: Mon Aug 11, 2008 1:01 pm
by James Bott
Patrick,

>The "standard" is oObj:cTooltip

Of course, and that is what gave us the problem. You cannot change the tooltip by doing:

oBtn:cTooltip := "New tooltip"

You have to do this instead:

oBtn:cTiptool := "New tooltip"

I'm sure Manuel had a good reason for this, but I don't know what it was.

James