|
-
Dec 15th, 1999, 09:05 AM
#1
Thread Starter
Lively Member
Hi,
How do I open the Common Dialog to a folder I want (say "c:\My Documents\")? It seems to always start with the working directory.
Thanks in advance.
-
Dec 15th, 1999, 09:37 AM
#2
Use the InitDir Property..
Code:
Private Sub Command1_Click()
With CommonDialog1
.InitDir = "C:\My Documents"
.ShowOpen
End With
End Sub
------------------
Aaron Young
Analyst Programmer
[email protected]
[email protected]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|