Search found 165 matches: lbuttondown

Return to advanced search

oBrw:ToExcel() provoca un error ( SOLUCIONADO )

... 1603 ) Called from: .\source\classes\BTNBMP.PRG => TBTNBMP:LBUTTONUP( 989 ) Called from: .\source\classes\BTNBMP.PRG => TBTNBMP:LBUTTONDOWN( 937 ) Called from: .\source\classes\CONTROL.PRG => TCONTROL:HANDLEEVENT( 1814 ) Called from: .\source\classes\BTNBMP.PRG => TBTNBMP:HANDLEEVENT( ...
by CARLOS ATUNCAR
Mon Aug 12, 2024 5:19 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: oBrw:ToExcel() provoca un error ( SOLUCIONADO )
Replies: 3
Views: 1126

Re: how get Event from TExplorerBar() when "collaps" a Panel ?

... we have Codeblock-Slot like in c:\fwh\samples\testmmd.prg   oWndMOUSE:bLClicked    = { | nRow, nCol, nFlags | oWndMOUSE:Say( 2, 2,  "LButtonDown" ) }   oWndMOUSE:bLButtonUp   = { | nRow, nCol, nFl8ags | oWndMOUSE:Say( 2, 2, "LButtonUp    " ) }
by Jimmy
Sat Feb 24, 2024 2:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: how get Event from TExplorerBar() when "collaps" a Panel ?
Replies: 11
Views: 1264

Re: Reason for closing DBF file

... 792 ) Called from: .\source\classes\BTNBMP.PRG => TBTNBMP:LBUTTONUP( 1083 ) Called from: .\source\classes\BTNBMP.PRG => TBTNBMP:LBUTTONDOWN( 1016 ) Called from: .\source\classes\CONTROL.PRG => TCONTROL:HANDLEEVENT( 1844 ) Called from: .\source\classes\BTNBMP.PRG => TBTNBMP:HANDLEEVENT( ...
by russimicro
Wed Sep 20, 2023 2:45 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reason for closing DBF file
Replies: 23
Views: 1980

EXCEL description: (DOS Error -2147352567) WINOLE/1007 Imp

... 713 ) Called from: .\source\classes\BTNBMP.PRG => TBTNBMP:LBUTTONUP( 999 ) Called from: .\source\classes\BTNBMP.PRG => TBTNBMP:LBUTTONDOWN( 937 ) Called from: .\source\classes\CONTROL.PRG => TCONTROL:HANDLEEVENT( 1842 ) Called from: .\source\classes\BTNBMP.PRG => TBTNBMP:HANDLEEVENT( ...
by mauri.menabue
Mon Jul 31, 2023 10:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXCEL description: (DOS Error -2147352567) WINOLE/1007 Imp
Replies: 4
Views: 441

Re: calendar not run ( DBLCLICK) - Resolved - !!!!!

... nLParam ) METHOD HandleEvent( nMsg, nWParam, nLParam ) CLASS TCalendar   Do Case      case nMsg == WM_LBUTTONDOWN           return ::LButtonDown( nHiWord( nLParam ), nLoWord( nLParam ), nWParam )      case nMsg == WM_LBUTTONUP           return ::LButtonUp( ...
by Silvio.Falconi
Sun May 21, 2023 8:20 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: calendar not run ( DBLCLICK)
Replies: 20
Views: 2764

Re: how to get CTRL + LBUTTONDOWN Event ?

hi Antonio,

Code: Select all  Expand view
oWnd:bLClicked = { || If( GetKeyState( VK_CONTROL ), MsgInfo( "Ctrl + left click" ),) }

YES, thx to point me to Codeblock Slot
by Jimmy
Wed Jan 11, 2023 7:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get CTRL + LBUTTONDOWN Event ?
Replies: 2
Views: 335

Re: how to get CTRL + LBUTTONDOWN Event ?

Dear Jimmy, Here you have a working example: #include "FiveWin.ch"function Main()    local oWnd     DEFINE WINDOW oWnd     oWnd:bLClicked = { || If( GetKeyState( VK_CONTROL ), MsgInfo( "Ctrl + left click" ),) ...
by Antonio Linares
Wed Jan 11, 2023 6:34 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get CTRL + LBUTTONDOWN Event ?
Replies: 2
Views: 335

how to get CTRL + LBUTTONDOWN Event ?

... 13         IF ::bClick != nil            EVAL( ::bClick, ::nOption, Self )         ENDIF  is this the Place to "ask" for CTRL + LBUTTONDOWN :?:      //  CTRL + Left Mouse down        ELSEIF ( GetKeyState( VK_CONTROL ) .AND. ??? )
by Jimmy
Wed Jan 11, 2023 5:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: how to get CTRL + LBUTTONDOWN Event ?
Replies: 2
Views: 335

Richedit5 SendMsg

... un array que contine un rect, guardando las coordenadas cuando hacen doble click (en el método LDblClick) y luego cuando hacen click (en el método LButtonDown) de manera que ahí ya tengo las cuatro coordenadas del rect. Pensaba que enviando un ::SendMsg( EM_SETRECT, 0, @arect ) se quedaría seleccionado ...
by Sebastián Almirón
Wed Aug 11, 2021 5:20 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Richedit5 SendMsg
Replies: 5
Views: 874

Re: Xbrowse : Setup configuration file

... ,, .t., Eval( ::bClrHeader, Self ) [ 2 ] ) end // add lines end ::DispEnd( aInfo ) ::oFont:Deactivate( hDC ) return 0 4. METHOD LButtonDown( nRow, nCol, nFlags ) CLASS TXBrowse ... if ::lDrag return Super:LButtonDown( nRow, nCol, nFlags ) endif // add the lines if nRow < ::HeaderHeight()-if(::lgetbar,::nrowheight*2,0) ...
by ShumingWang
Sat Apr 17, 2021 12:11 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : Setup configuration file
Replies: 5
Views: 1486

Re: Envio Teclas a un Get

Windows API provides the function SendInput() for both keyboard and mouse: https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-winuser-sendinput And the function mouse_event() just for the mouse events: https://docs.microsoft.com/en-us/windows/win32/api/winuser/nf-w...
by Antonio Linares
Thu Mar 18, 2021 8:38 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Envio Teclas a un Get
Replies: 21
Views: 6877

RBTN No exported method: END Error

... from: => END( 0 ) Called from: .\source\classes\TRBTN.PRG => TRBTN:LBUTTONUP( 886 ) Called from: .\source\classes\TRBTN.PRG => TRBTN:LBUTTONDOWN( 799 ) Called from: .\source\classes\CONTROL.PRG => TCONTROL:HANDLEEVENT( 1788 ) Called from: .\source\classes\TRBTN.PRG => TRBTN:HANDLEEVENT( ...
by betoncu
Thu Feb 04, 2021 12:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: RBTN No exported method: END Error
Replies: 3
Views: 371

Error on Resize xBrowse

... => TDIALOG:HANDLEEVENT( 1140 ) Called from: => SENDMESSAGE( 0 ) Called from: .\source\classes\MSGBAR.PRG => TMSGBAR:LBUTTONDOWN( 558 ) Called from: .\source\classes\CONTROL.PRG => TMSGBAR:HANDLEEVENT( 1814 ) Called from: .\source\classes\WINDOW.PRG => _FWH( ...
by mauri.menabue
Mon Nov 02, 2020 11:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error on Resize xBrowse
Replies: 0
Views: 301

Error xbrowse --> excel

... 713 ) Called from: .\source\classes\BTNBMP.PRG => TBTNBMP:LBUTTONUP( 999 ) Called from: .\source\classes\BTNBMP.PRG => TBTNBMP:LBUTTONDOWN( 937 ) Called from: .\source\classes\CONTROL.PRG => TCONTROL:HANDLEEVENT( 1814 ) Called from: .\source\classes\BTNBMP.PRG => TBTNBMP:HANDLEEVENT( ...
by mauri.menabue
Fri Oct 02, 2020 3:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error xbrowse --> excel
Replies: 2
Views: 571

Re: Fast Report´s future

... important but this is not true in the Tcontrol source there are additions of the object ( When moving the items ) display in these methods METHOD LButtonDown( nRow, nCol, nKeyFlags ) CLASS TControl METHOD MouseMove( nRow, nCol, nKeyFlags ) CLASS TControl METHOD KeyDown( nKey, nFlags ) CLASS TControl ...
by Silvio.Falconi
Wed May 13, 2020 12:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Fast Report´s future
Replies: 56
Views: 8445
Next

Return to advanced search