Search found 14 matches: trackmouseevent

Return to advanced search

Re: Ayuda DLL

Antonio, aquí la segunda parte: Error: Unresolved external '_HB_FUN_DRAWTHEMED' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_GETDLGBASEUNITS' referenced from P:\32BITS\FWH\LIB\FIVEHX.LIB|DIALOG Error: Unresolved external '_HB_FUN_CDLG2CHR' referenced from P...
by ricardog
Thu Aug 31, 2017 2:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda DLL
Replies: 24
Views: 6286

Re: El ratón al moverse deja "rastro" en las reglas

... de superficie para eliminar ese último pintado: #define TME_LEAVE 2 #define WM_MOUSELEAVE 675 METHOD MouseMove( nRow, nCol, nKeyFlags ) CLASS ... TrackMouseEvent( ::hWnd, TME_LEAVE ) ... METHOD HandleEvent( nMsg, nWParam, nLParam ) CLASS ... if nMsg == WM_MOUSELEAVE return ::MouseLeave( nHiWord( ...
by Antonio Linares
Sat Aug 16, 2014 11:25 am
 
Forum: EasyReport, EasyDialog y EasyPreview
Topic: El ratón al moverse deja "rastro" en las reglas
Replies: 34
Views: 11099

Re: SetGetColorFocus

... funcionalidad tienes que usar: #define WM_MOUSELEAVE 675 #define TME_LEAVE 2 Desde el Método MouseMove( nRow, nCol, nFlags ) tienes que llamar a: TrackMouseEvent( ::hWnd, TME_LEAVE ) Desde el método HandleEvent( nMsg, nWParam, nLParam ) if nMsg == WM_MOUSELEAVE return ::MouseLeave( nHiWord( nLParam ...
by Antonio Linares
Thu Jul 17, 2014 7:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: SetGetColorFocus
Replies: 12
Views: 1280

Re: sobre comportamiento de txbrowse

... on specific tables. Not easy to reproduce on any table. I am not able to reproduce. But let me keep trying to find the right fix. Modification of TrackMouseEvent appears to fix this issue, but that is not the correct fix. The real problem is in the Refresh() method. I get back when i find the ...
by nageswaragunupudi
Wed Aug 10, 2011 4:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: sobre comportamiento de txbrowse
Replies: 9
Views: 3461

Re: sobre comportamiento de txbrowse

... Refresh() in the xbrowse.prg and locate the line with the code:::DelRePos() but not work. :-( only work comment the first call to TrackMouseEvent( ::hWnd, TME_LEAVE ) in the method mousemove salu2
by carlos vargas
Wed Aug 10, 2011 3:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: sobre comportamiento de txbrowse
Replies: 9
Views: 3461

sobre comportamiento de txbrowse

... nPos   local cTxt  // tooltip CELL   local nVMove, nHMove, nOldRowPos,  nOldColPos   local nMousePos := ::MouseRowPos( nRow )   //KDS  TrackMouseEvent( ::hWnd, TME_LEAVE )   <<------------------- aca lo comente y  ya no hace el salto   if ::lDrag .or. ::lEditMode      return Super:MouseMove( ...
by carlos vargas
Tue Aug 09, 2011 5:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: sobre comportamiento de txbrowse
Replies: 9
Views: 3461

... oSay != nil, oSay:Refresh(),) oDtp:bGotFocus = { || oDtp:Open(), nil } Por favor, revisa el ejemplo samples\TestDtp.prg. * Corrección: La función TrackMouseEvent() tenía un error en su código fuente. Ahora está correcta. * Nuevo: Nuevo método MmSay( nRow, nCol ) en la clase TPrinter, igual que ...
by Antonio Linares
Mon Oct 20, 2008 5:44 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October / Octubre 2008 (8.10)
Replies: 1
Views: 3304

New FTDN October / Octubre 2008 (8.10)

... OF oWnd ON CHANGE If( oSay != nil, oSay:Refresh(),) oDtp:bGotFocus = { || oDtp:Open(), nil } Please review samples\TestDtp.prg * Fix: function TrackMouseEvent() had a mistake in its code. Now it is fine. * New: Class TPrinter Method MmSay( nRow, nCol ), same as CmSay() (centimeters), but managing ...
by Antonio Linares
Sun Oct 12, 2008 8:10 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October / Octubre 2008 (8.10)
Replies: 1
Views: 3304

Another sample that bombs out as soon as I move the mouse over the link (please note that also TUrlLink uses TrackMouseEvent()): #include "Fivewin.ch" #include "Urllink.ch" FUNCTION MAIN() LOCAL oWnd, oUrl DEFINE WINDOW oWnd @ 1, 1 URLLINK ...
by Enrico Maria Giordano
Thu Nov 08, 2007 12:53 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in Harbour version of toolbar
Replies: 55
Views: 7940

Enrico,

If you comment TrackMouseEvent() call then it gets fixed ?
by Antonio Linares
Wed Nov 07, 2007 2:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in Harbour version of toolbar
Replies: 55
Views: 7940

Enrico, But TrackMouseEvent( ::hWnd, TME_LEAVE ) is called with TME_LEAVE parameter, so it just notifies when the mouse leaves the control, not when the mouse is moved. Anyhow, an error like the one that you describe looks as a ...
by Enrico Maria Giordano
Wed Nov 07, 2007 10:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in Harbour version of toolbar
Replies: 55
Views: 7940

Enrico,

But TrackMouseEvent( ::hWnd, TME_LEAVE ) is called with TME_LEAVE parameter, so it just notifies when the mouse leaves the control, not when the mouse is moved.

Anyhow, an error like the one that you describe looks as a recursive call that forces the operating system to quit the task
by Antonio Linares
Wed Nov 07, 2007 10:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Bug in Harbour version of toolbar
Replies: 55
Views: 7940

... a usar. * Mejora: La clase TOutLook2003 ha sido modificada para trabajar también con FW de 16 bits. * Nuevo: Fivewin de 16 bits soporta la función TrackMouseEvent(). * Nuevo: Nueva clase TOutLook2003, también disponible para Fivewin para Clipper (16 bits). * Nuevo: Barra de botones tipo Office ...
by Antonio Linares
Tue Oct 09, 2007 5:51 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2007 (7.10)
Replies: 1
Views: 2456

New FTDN October/Octubre 2007 (7.10)

... the focus color to use. * Enhancement: Class TOutLook2003 has been modified to work with FiveWin 16 bits too. * New: FiveWin 16 bits support for TrackMouseEvent() function. * New: Class TOutLook2003 is also available for FiveWin for Clipper 16 bits. * New: Office 2007 look for ButtonBars!!! As ...
by Antonio Linares
Mon Oct 08, 2007 8:42 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN October/Octubre 2007 (7.10)
Replies: 1
Views: 2456

Return to advanced search