Search found 7 matches: tme

Return to advanced search

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

Manuel, Voy a probarlo, gracias! :-) Hay que implementar el evento de abandono 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,...
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: 11863

Re: SetGetColorFocus

Adhemar, para conseguir esa 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 ::M...
by Antonio Linares
Thu Jul 17, 2014 7:39 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: SetGetColorFocus
Replies: 12
Views: 1326

Re: ejemplo c5Tooltip

#define TME_LEAVE 2 DATA bResized, bLDblClick, bWhen, bValid, bKeyChar, bMLeave, bMMoved DATA oToolTip METHOD CheckToolTip( nRow, nCol ) METHOD IsVisible() INLINE IsWindowVisible( ::hWnd ) METHOD MouseLeave( nRow, nCol, nKeyFlags ) +METHOD MouseLeave( nRow, nCol, nKeyFlags ) CLASS TWindow++ ...
by Antonio Linares
Fri Sep 20, 2013 10:49 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: ejemplo c5Tooltip
Replies: 60
Views: 23893

Re: sobre comportamiento de txbrowse

sorry for my bad english. ok, i use fwh 11.03 all my index tag used the clausule "for !deleted()" and a idex tag named "index on deleted() tag del" for optimize use, this is recomend for ads. i try you recomend Please see the method Refresh() in the xbrowse.prg and locate...
by carlos vargas
Wed Aug 10, 2011 3:46 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: sobre comportamiento de txbrowse
Replies: 9
Views: 3484

sobre comportamiento de txbrowse

estimados, recientemente me he encontrado con un problema al usar xbrowse, la tabla que muestra tiene 1800 registros, y sucede que al seleccionar el registro 15 o cualquier otro y dar doble click abre mi dialogo de edicion, hasta ahi todo correcto, pero extrañamente el browse ha realizado un salto d...
by carlos vargas
Tue Aug 09, 2011 5:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: sobre comportamiento de txbrowse
Replies: 9
Views: 3484

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 It see...
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: 7961

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: 7961

Return to advanced search