FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour ButtonBmp + Skins CodeJock Solved
Posts: 244
Joined: Mon Jun 05, 2006 09:39 PM
ButtonBmp + Skins CodeJock Solved
Posted: Tue Mar 16, 2010 03:22 PM

Ja so long that I had the problem with buttons ButtonBmp skins using Codejock.
When passing the mouse over the button bitmaps were not shown, after times could solve this.
In mousemove method must be called again display, however, this only if the button has Tooltip.
The changes are below:

In class TButtonBmp

METHOD MouseMove( nRow, nCol, nFlags ) INLINE Super:MouseMove( nRow, nCol, nFlags ),;
::oWnd:SetMsg( ::cMsg ), ::Refresh() ,;
If(SetSkins() .and. !Empty(::cToolTip), ::Display(), Nil)

:D

Continue the discussion