: : how can I open a specific folder from a vb application? I am using the common dialog but I can not find the right property.
: : if it is easy for you give me an example!
: : thank you!
: :
: :
:
: With CommonDialog1
: .CancelError = True
: .InitDir= "C:\Test" 'folder to be opened
: .FileName = ""
: .Filter = "TXT files (*.txt)|*.txt"
: .ShowOpen
: strFileName = .FileName
: End With
:
thank you!
: