Visual Basic

Moderators: None (Apply to moderate this forum)
Number of threads: 18013
Number of posts: 55386

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
how can I open a specific folder... Posted by vbdeveloper1 on 7 Sept 2004 at 3:23 AM
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!

Report
Re: how can I open a specific folder... Posted by kel1981b on 7 Sept 2004 at 7:24 AM
: 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

Report
Re: how can I open a specific folder... Posted by vbdeveloper1 on 8 Sept 2004 at 3:37 AM
: : 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!
:




 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.