Search found 13 matches: odragcursor

Return to advanced search

Re: bDragBegin and bDropOver problem

... now. When I change to FWH2304, This Drag&Drop code is not working. When I drop to FOLDER or SAY, it doesn't call ::bDropOver and still show ::oDragCursor. Dear Dutch, Please go to FWH\samples and do this: buildh testdrp2 buildh testdrp3 buildh testdrp4 buildh testdrp5 buildh testdrp6 they ...
by dutch
Tue Sep 12, 2023 7:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bDragBegin and bDropOver problem *Unresolve*
Replies: 27
Views: 3872

bDragBegin and bDropOver problem *Unresolve*

... years without any problem. xbrowse:bDragBegin folder:bDropOver get:bDropVer Today change to FWH 2304 the drag & drop is not working anymore ::oDragCursor is working ::bDragBegin is working ::bDropOver does not response Thank you for any idea and suggestion.
by dutch
Tue Sep 12, 2023 3:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: bDragBegin and bDropOver problem *Unresolve*
Replies: 27
Views: 3872

Re: "Snap" for Clipper

...  2582  3503  3504 ODLG                    WINDOW.PRG     3276  3288  3289  3289  3884  3892  3894  3897  3897  3899                   3899  3901 ODRAGCURSOR            WINDOW.PRG      448  2584  2585 OFONT                  WINDOW.PRG      446   602   602   620   620   621   621   621   621   ...
by Antonio Linares
Sat Oct 26, 2013 9:44 am
 
Forum: Off Topic / Otros temas
Topic: "Snap" for Clipper
Replies: 7
Views: 6540

Re: xBrowse - drag & drop

Could someone please test: For me oBrw:oDragCursor := oCursor does only show the oCursor if the mouse is inside the rowselector column. Best regards, Otto For me drag cursor is working even when the mouse is in data area. May I know which version ...
by nageswaragunupudi
Wed Jan 20, 2010 4:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - drag & drop
Replies: 3
Views: 619

xBrowse - drag & drop

Could someone please test:
For me oBrw:oDragCursor := oCursor does only show the oCursor if the mouse is inside the rowselector column.

Best regards,
Otto
by Otto
Mon Jan 18, 2010 8:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse - drag & drop
Replies: 3
Views: 619

ButtonBar button with odragcursor problems

If a button in the buttonbar is also used to start drag operation by assigning a value to its data oDragCursor it is noticed that (1) the buttons bAction block is never executed, (2) mouse click on the button has no effect, (3) in case of 2007 style, when mouse is moved ...
by nageswaragunupudi
Wed Feb 06, 2008 5:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ButtonBar button with odragcursor problems
Replies: 0
Views: 355

... 1 ] @ 1, 10 LISTBOX oBrw2 FIELDs (fivetest->first) ; HEADERS "Name" ; FIELDSIZES 140 ; SIZE 140, 60 ; OF oFld:aDialogs[ 2 ] oBrw1:oDragCursor := oCursor oBrw2:oDragCursor := oCursor oFld:bDropOver = { |uDropInfo,nRow,nCol,nKeyFlags|ShowPos( nRow, nCol, oFld ) } ACTIVATE DIALOG ...
by Otto
Mon Nov 26, 2007 10:56 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drag & drop folder
Replies: 11
Views: 2363

... 1 ] @ 1, 10 LISTBOX oBrw2 FIELDs (fivetest->first) ; HEADERS "Name" ; FIELDSIZES 140 ; SIZE 140, 60 ; OF oFld:aDialogs[ 2 ] oBrw1:oDragCursor := oCursor oBrw2:oDragCursor := oCursor oFld:bDropOver = { |uDropInfo,nRow,nCol,nKeyFlags|ShowPos( nRow, nCol, oFld ) } ACTIVATE DIALOG ...
by Otto
Thu Nov 22, 2007 10:13 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drag & drop folder
Replies: 11
Views: 2363

drag drop oSay

... "..\icons\Recycle2.ico" OF oWnd @ 8, 15 SAY oSay PROMPT "Test" COLORS nRGB( 255, 0, 0 ) , nRGB( 55, 55, 255) of Ownd oSay:lDrag = .t. oSay:oDragCursor = oCrs oIco1:oDragCursor = oCrs ACTIVATE WINDOW oWnd return nil
by Otto
Mon Nov 05, 2007 9:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: drag drop oSay
Replies: 7
Views: 1233

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

... "book" DEFINE WINDOW oWnd TITLE "FiveWin own Drag-Drop 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", ...
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: 1494

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

... GSAY oSayTxt PROMPT cVarSay OF oWnd PIXEL SIZE 90,25 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 /* ...
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: 1272

Thanks and I've another qutestion?

... I can get only nRow but I don't know what the Record number or data in this Row. How can I get the ::bData or Record No. from this drop row? oBrw:oDragCursor := oCursor oBrw:bDragBegin := { |nRow,nCol,Flags,Self| SetDropInfo( right(Eval( oBrw:aColumns[ oBrw:nAtCol( nCol ) ]:bData ),10)+ ; Eval( ...
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: 4647

Como se convierte font de Twindows a FONT DE TPRINTER

... de Impresion " @ 12+12+12+24, 0 BTNBMP oBtn3 NAME "GET" NOBORDER SIZE 11, 11 OF oDlgT ;oBtn3:cTOOLTIP:= "Jalar una expresion " ;oBtn3:oDragCursor = oCursor @ 12+12+12+24,15 BTNBMP oBtn4 NAME "grOup" NOBORDER SIZE 11, 11 OF oDlgT ;oBtn4:cTOOLTIP:= "Jalar una Caja (Box)" ;oBtn4:oDragCursor ...
by Vladimir Zorrilla
Tue Apr 18, 2006 6:40 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como se convierte font de Twindows a FONT DE TPRINTER
Replies: 5
Views: 3751

Return to advanced search

cron