Search found 80 matches: nkeyflags

Return to advanced search

Drag & drop folder

... from nLeft of the object (here from xBrowse) you drag from? How could I find out on what folder you drop? oFld:bDropOver = { |uDropInfo,nRow,nCol,nKeyFlags| msginfo(nCol) } oxBrwFolio1:nLeft := 0 http://www.atzwanger.com/fw/drag1.jpg oxBrwFolio1:nLeft := 10 http://www.atzwanger.com/fw/drag2.jpg
by Otto
Mon Nov 19, 2007 7:13 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drag & drop folder
Replies: 11
Views: 2409

Hello Antonio,

I think it is the same with the other controls.

What is the problem if I change
return 0 to

return Super:LButtonUp( nRow, nCol, nKeyFlags )

in the LButtonUp method.

Then it is working. Do we face other problems.
Regards,
Otto
by Otto
Tue Nov 06, 2007 11:29 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: drag drop oSay
Replies: 7
Views: 1269

Drag and drop - How to do - like itunes-software

... features!!!" @ 3, 3 BUTTON oBtn PROMPT "DragMe/DropMe at the Listbox" SIZE 210, 25 oBtn:oDragCursor = oCursor oBtn:bDragBegin = { | nRow, nCol, nKeyFlags | SetDropInfo( Time() ) } @ 6, 3 LISTBOX oLbx VAR cItem ; ITEMS { "I am a listbox!","Apples", "Oranges", "Lemons", "Limes" } SIZE 200, 200 ...
by Otto
Thu Sep 20, 2007 5:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drag and drop - How to do - like itunes-software
Replies: 8
Views: 1534

... By Joao Santos => ; [ <oBmp> := ] TBitmap():ReDefine( <nId>, <cResName>, <cBmpFile>,; <oWnd>, [\{ |nRow,nCol,nKeyFlags| <uLClick> \}],; [\{ |nRow,nCol,nKeyFlags| <uRClick> \}],; <.scroll.>, <.adjust.>, <oCursor>, <cMsg>, ...
by karinha
Fri Aug 31, 2007 1:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: DUDA: COMANDO TRANSPARENT EN UNA BITMAP
Replies: 4
Views: 1421

Buttons on meta-files

Hello, A application that I wrote is generating drawing by using meta-files. Then I display them and by using oMeta:blClicked := {|nRow, nCol, nKeyFlags| myfunc(nRow, nCol, nKeyFlags)} I check where the mouse is clicked, then I jump to another drawing. I was wondering that I can use some kind ...
by Marc Vanzegbroeck
Tue Aug 28, 2007 12:09 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Buttons on meta-files
Replies: 9
Views: 1578

How Can I Move object "SAY" using class "TGSA

... FONT oFont COLOR CLR_RED TRANSPARENTE oSayTxt:lTabs := .f. oSayTxt:lSombra := .f. oSayTxt:oDragCursor := oCursor oSayTxt:bDragBegin := { | nl, nc, nKeyFlags | SetDropInfo( oSayTxt ), oWnd:SetMsg( "Dragging and Dropping" ) } Return nil /* Thanks ! Gui - São Paulo - Brazil */
by Gui
Tue Jul 31, 2007 5:34 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: How Can I Move object "SAY" using class "TGSA
Replies: 4
Views: 1295

Re: ARRAY over 4096 elements

... ArPrgElem[3]:GoTop() ArPrgElem[3]:nClrText := {|| ColorBloqueo( ArPrgElem[6]:xGet(ArPrgElem[3]:nAt) )} ArPrgElem[3]:bRClicked := { |nRow,nCol,nKeyFlags| PasaMenu(nRow, nCol, nKeyFlags, IdeArra ) } ArPrgElem[3]:nLineStyle := 0 ... The class TARRAY: ***************************************************************************** ...
by FiveWiDi
Sat Jun 02, 2007 10:33 pm
 
Forum: FiveWin for CA-Clipper
Topic: ARRAY over 4096 elements
Replies: 7
Views: 3865

No Clear method when pressing "." in a listbox cel

... style for the browse oLbx:lCellStyle := .T. // To perform and edit Cell operation using left double click oLbx:bLDBLclick := { |nRow, nCol, nKeyFlags| ; ColVarChg(@oLbx, @aItems), oLbx:Refresh()} REDEFINE BUTTON ID COSTINVT_ACCEPT OF oDlg2; ACTION (oDlg2:end()) ACTIVATE DIALOG oDlg2 return ...
by angelo.c
Fri Mar 23, 2007 4:56 am
 
Forum: FiveMac / FivePhone (iPhone, iPad)
Topic: No Clear method when pressing "." in a listbox cel
Replies: 3
Views: 2451

Rochinha,

o METHOD LButtonDown( nRow, nCol, nKeyFlags ) CLASS TFoldAng

Nao esta faltando alguma coisa no final dele ?

Ou eh só fechar os If's ?

Maurilio;
obrigado pela dica.

@braços ale
by Ale SB
Mon Jan 29, 2007 2:24 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Abas, na Lateral da Dialog ????
Replies: 5
Views: 1682

Silvio,

You have to implement these methods in your Class:

METHOD RButtonDown( nRow, nCol, nKeyFlags )
METHOD RButtonUp( nRow, nCol, nKeyFlags )

Please review source\classes\window.prg to see how they are implemented.
by Antonio Linares
Thu Sep 14, 2006 11:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TO ANTONIO
Replies: 2
Views: 761

TO ANTONIO

I 'm trying to implement to a my class an method
MouseMove( nRow, nCol, nKeyFlags )
is there a manual reference where I can read to determinate when I click R_UP and R_Down ?

-------------------
by Silvio
Thu Sep 14, 2006 10:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TO ANTONIO
Replies: 2
Views: 761

Errors in window.prg ?

... Comparing two methods : case nMsg == WM_LBUTTONDOWN return ::LButtonDown( nHiWord( nLParam ), nLoWord( nLParam ),; METHOD LButtonDown( nRow, nCol, nKeyFlags ) case nMsg == WM_MOVE return ::Moved( nLoWord( nLParam ), nHiWord( nLParam ) ) METHOD Moved( nRow, nCol ) INLINE ; Which is nRow ? nLoWord(nLParam) ...
by Frank Demont
Mon Aug 28, 2006 11:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Errors in window.prg ?
Replies: 0
Views: 375

Problema VK_RETURN

... lBorder, lTabStop ) CONSTRUCTOR METHOD Paint() METHOD Display() INLINE ::BeginPaint(), ::Paint(), ::EndPaint() METHOD LButtonDown( nRow, nCol, nKeyFlags ) ENDCLASS //----------------------------------------------------------------------------// METHOD New( nTop, nLeft, nBottom, nRight, oWnd, ...
by manuramos
Fri Jul 28, 2006 8:11 pm
 
Forum: FiveWin para CA-Clipper
Topic: Problema VK_RETURN
Replies: 3
Views: 1269

Thanks and I've another qutestion?

... right(Eval( oBrw:aColumns[ oBrw:nAtCol( nCol ) ]:bData ),10)+ ; Eval( oBrw:aColumns[ 2 ]:bData ) ) } oBrw:bDropOver := { |uDropInfo,nRow,nCol,nKeyFlags| if(uDropInfo<>nil, ( MoveRms( uDropInfo+str( Int((nRow-25)/20),3 ), oBrw ) ), ) } *Now I use this* Function MoveRms( cData, oLbx ) ...
by dutch
Tue Jul 25, 2006 4:24 pm
 
Forum: FiveWin for CA-Clipper
Topic: How can I get data from each column of TSbrowse?
Replies: 13
Views: 4695

I change into below, porblem still, obrow1 obrow2 obrow2:BLDBLClick:={||msginfo("aaa")} METHOD LDblClick( nRow, nCol, nKeyFlags ) CLASS TXBrowse local oCol local nColPos, nRowPos // add if ::BLDBLClick<>nil return Super:LDblClick( nRow, nCol, nKeyFlags ) end //add ::CancelEdit() ...
by ShumingWang
Thu May 25, 2006 1:51 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: 2 txbrowse in 1 dialog, bdblclick cause browse display wrong
Replies: 1
Views: 639
PreviousNext

Return to advanced search