Search found 18 matches: dropfiles

Return to advanced search

drop to GET how ?

hi, i have some GET and enable "DROPFILES"   ON DROPFILES DoDropFiles( nRow, nCol, aFiles ) i try to found TGET and compare Position where i drop PROCEDURE DoDropFiles( nRow, nCol, aFiles )LOCAL ii, iMax, oObj, cVALTYPELOCAL ...
by Jimmy
Wed May 24, 2023 4:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: drop to GET how ?
Replies: 5
Views: 241

Re: Drag and Drop

Thank you Mr. Rao,

My main window is TWindow. But I like to use it within TDialog.

Is it possible?. DROPFILES is available only for TWINDOW.

Thanks
by Horizon
Mon Jan 25, 2016 4:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drag and Drop
Replies: 4
Views: 719

Re: Visual Studio 2013 question

... Calls =========== Called from: => PAINTTHENAME( 27 ) Called from: => (b)MAIN( 14 ) Called from: .\source\classes\WINDOW.PRG => TWINDOW:DROPFILES( 0 ) Called from: => TWINDOW:HANDLEEVENT( 0 ) Called from: .\source\classes\WINDOW.PRG => _FWH( 0 ) Called from: => WINRUN( 0 ) Called ...
by rhlawek
Thu May 29, 2014 8:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Visual Studio 2013 question (solved)
Replies: 22
Views: 3732

Re: "Snap" for Clipper

...      427  1451  1455 BDELETE                WINDOW.PRG      432   550   550 BDOWN                  WINDOW.PRG      491  1211  1287  1288 BDROPFILES              WINDOW.PRG      427   492  1212  1226  1227  1227  1539  1541 BDROPOVER              WINDOW.PRG      428  3733  3734 BEGINPAINT() ...
by Antonio Linares
Sat Oct 26, 2013 9:44 am
 
Forum: Off Topic / Otros temas
Topic: "Snap" for Clipper
Replies: 7
Views: 6540

Re: On Dropfiles

Dear Rao,

Maybe a solution is to capture the mouse so we get the mouse move events
by Antonio Linares
Mon Mar 08, 2010 8:57 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: On Dropfiles
Replies: 9
Views: 2533

Re: On Dropfiles

Thank you Otto!
by MarcoBoschi
Mon Mar 08, 2010 8:40 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: On Dropfiles
Replies: 9
Views: 2533

Re: On Dropfiles

nageswaragunupudi,
Many thanks! Is very for me your code!
Have a nice day
Marco
by MarcoBoschi
Mon Mar 08, 2010 7:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: On Dropfiles
Replies: 9
Views: 2533

Re: On Dropfiles

Mr Otto
This logic does not help when dropping files from outside the FW application over the FW Window. oBrw:bMMoved does not get any message.

May be Mr. Antonio can suggest a way, if we can track the mouse movement till the files are finally dropped.
by nageswaragunupudi
Sun Mar 07, 2010 12:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: On Dropfiles
Replies: 9
Views: 2533

Re: On Dropfiles

Download http://www.atzwanger-software.com/fw/xbrdrag.zip Marco, I will remember having done some tests on that issue. I have installed an older xBrowse class. Here you have to click inside the record selector to start drag. This is my code: /*########################################...
by Otto
Sun Mar 07, 2010 11:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: On Dropfiles
Replies: 9
Views: 2533

Re: On Dropfiles

... := 1   oBrw:CreateFromCode()   oWnd:oClient := oBrw   ACTIVATE WINDOW oWnd ;      ON DROPFILES ShowItem( nRow, nCol, aFiles, oBrw )return nilstatic function ShowItem( nRow, nCol, aFiles, oBrw )   oBrw:SetPos( ...
by nageswaragunupudi
Sun Mar 07, 2010 10:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: On Dropfiles
Replies: 9
Views: 2533

Re: On Dropfiles

Antonio FUNCTION SENDMAIL( nRow, oLbx, aItem ) local nFirst := oLbx:SendMsg( LB_GETTOPINDEX ) + 1 local nHeight := oLbx:SendMsg( LB_GETITEMHEIGHT ) local nAt := Int( nRow / nHeight ) + nFirst LOCAL nPippo := aItem[1] if nAt > 0 .and. nAt <= Len( oLbx:aItems ) oLbx:select( nAt ) else MsgAlert( ...
by MarcoBoschi
Sun Mar 07, 2010 10:17 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: On Dropfiles
Replies: 9
Views: 2533

Re: On Dropfiles

Antonio, thanks a lot dor your willingness. There is another little problem. In the listbox is not refreshed the cursor position. Now I take a look my outlook express, for instance: If I want to move a message from In folder to another folder I cam drag with the mouse the message and scroll all item...
by MarcoBoschi
Sat Mar 06, 2010 4:33 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: On Dropfiles
Replies: 9
Views: 2533

Re: On Dropfiles

... oWnd FROM 100 , 100 TO 205 , 205 PIXEL   @ 1 , 1 LISTBOX oLbx VAR cItem ITEMS aItem OF oWnd SIZE 200 , 200 PIXEL   ACTIVATE WINDOW oWnd ;      ON DROPFILES SENDMAIL( nRow, nCol, aFiles, oLbx )return nilFUNCTION SENDMAIL( nRow, nCol, aFiles, oLbx )   local nFirst  := oLbx:SendMsg( ...
by Antonio Linares
Sat Mar 06, 2010 8:58 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: On Dropfiles
Replies: 9
Views: 2533

On Dropfiles

... } DEFINE WINDOW oWnd FROM 100 , 100 TO 205 , 205 PIXEL @ 1 , 1 LISTBOX oBrw ITEMS aItem OF oWnd SIZE 200 , 200 PIXEL ACTIVATE WINDOW oWnd ON DROPFILES SENDMAIL( nRow, nCol, aFiles, aItem ) return nil FUNCTION SENDMAIL( nRow, nCol, aFiles, aItem ) LOCAL nPos := 1 // nPos := ???????? ? nRow, ...
by MarcoBoschi
Fri Mar 05, 2010 2:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: On Dropfiles
Replies: 9
Views: 2533

Hidden MDI Child windows

... oWnd MAXIMIZED VALID ; ON PAINT (drawbitmap( oWnd:owndclient:hdc, obmp:hbitmap, 0, 0,; oWnd:owndclient:nWidth(), oWnd:owndclient:nHeight())); ON DROPFILES DropArquiva(aFiles) ; ON RESIZE GetWndFrame():arrangeicons() Antonio
by AHF
Wed Jan 02, 2008 11:44 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Hidden MDI Child windows
Replies: 5
Views: 1028
Next

Return to advanced search