Open Folder (external window) from VB.NET 2003

  • Thread starter Thread starter Marcin Floryan
  • Start date Start date
M

Marcin Floryan

Hello!

A simple question (I can't figure it out myself)

I want to be able to open some windows folder (in an external window -
process) from within my VB.NET application.
I would like to get the same behavour like doing "Start->Run..." with (for
example: "C:\")

I tried Shell("C:\") but it says "FileNotFound" :-(
How can I do it?

(I want to open a directory for my user where his results are stored)

Best regards,

Marcin Floryan
 
Marcin,

* "Marcin Floryan said:
I want to be able to open some windows folder (in an external window -
process) from within my VB.NET application.
I would like to get the same behavour like doing "Start->Run..." with (for
example: "C:\")

I tried Shell("C:\") but it says "FileNotFound" :-(
How can I do it?

(I want to open a directory for my user where his results are stored)

\\\
System.Diagnostics.Process.Start("C:\WINDOWS")
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top