Discussion:
Windows folder browse
(too old to reply)
charles
2008-10-17 17:51:30 UTC
Permalink
I want to call up the Windows Explorer to let the user browse the folders on his computer. How do I do this? I don't want to use Dbase's getfile() because of some limitations. How do I call up windows browse folders?
Greg Hill
2008-10-17 19:25:51 UTC
Permalink
Post by charles
I want to call up the Windows Explorer to let the user browse the folders
on his computer. How do I do this? I don't want to use Dbase's getfile()
because of some limitations. How do I call up windows browse folders?
What version of dBASE are you working with?
Do you want any control over what happens after Windows Explorer opens? I
would assume yes

Greg Hill
unknown
2008-10-17 19:45:18 UTC
Permalink
On Fri, 17 Oct 2008 13:51:30 -0400 charles
Sender: charles <***@nresponse.com>
wrote the following in:
Newsgroup: dbase.programming
Post by charles
I want to call up the Windows Explorer to let the user browse the folders on his computer. How do I do this? I don't want to use Dbase's getfile() because of some limitations. How do I call up windows browse folders?
Try this:

run(true, 'explorer ' + _dbWinhome + 'Bin')


Ivar B. Jessen
Eric Logan
2008-10-20 20:59:37 UTC
Permalink
"charles" wrote ...
Post by charles
I want to call up the Windows Explorer to let the user browse the folders
on his computer. How do I do this? I don't want to use Dbase's getfile()
because of some limitations. How do I call up windows browse folders?
You can apply some switches too.
RUN(TRUE, "explorer.exe /n,/e, Z:\Data")

Loading...