Thank you very much Antonio,
this is exactly what I was looking for,
you are always our boss
Good day
Search found 4 matches
- Thu Nov 28, 2024 10:00 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Select a folder without using the cGetDir function RESOLVED
- Replies: 6
- Views: 999
- Wed Nov 27, 2024 4:21 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Select a folder without using the cGetDir function RESOLVED
- Replies: 6
- Views: 999
Re: Select a folder without using the cGetDir function
Thank you Natter,
but I didn't want to use the cGetDir function,
searching online I found that you could use the IFileDialog interface
(from Windows Vista)
but I didn't want to use the cGetDir function,
searching online I found that you could use the IFileDialog interface
(from Windows Vista)
- Wed Nov 27, 2024 3:19 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Select a folder without using the cGetDir function RESOLVED
- Replies: 6
- Views: 999
Select a folder without using the cGetDir function RESOLVED
Hi all,
I would like to select a folder using a form similar to that for selecting a file,
not like the one used by the cGetDir function.
A form like the example below
Can someone help me ?
Thanks in advance
Massimo
I would like to select a folder using a form similar to that for selecting a file,
not like the one used by the cGetDir function.
A form like the example below
Can someone help me ?
Thanks in advance
Massimo
- Wed Oct 02, 2024 3:42 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: get OnGetMouseMove
- Replies: 1
- Views: 326
Re: get OnGetMouseMove
Hi Silvio,
here is a sample.
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg, oGet, cVar := SPACE( 20 ), lPass := .F.
DEFINE DIALOG oDlg FROM 0, 0 TO 400, 500 TITLE "TEST OVER" PIXEL
oDlg:bMMoved := { | nRow, nCol, nKeyFlags | MyOverDlg( @lPass ) }
@ 14, 10 GET oGet VAR cVar OF oDlg ...
here is a sample.
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg, oGet, cVar := SPACE( 20 ), lPass := .F.
DEFINE DIALOG oDlg FROM 0, 0 TO 400, 500 TITLE "TEST OVER" PIXEL
oDlg:bMMoved := { | nRow, nCol, nKeyFlags | MyOverDlg( @lPass ) }
@ 14, 10 GET oGet VAR cVar OF oDlg ...