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.
Printable View
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.
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]