link to open a folder

A

Aaron

I wrote a c# win form app. I would like to link a botton to a folder. so
when someone clicks the botten it opens up a folder (is it explorer.exe?)

Thanks,
Aaron
 
C

Cor Ligthert

Aaron,

What do you want to do with that folder? I assume that you want to open a
kind of dialog.

Cor
 
A

Aaron

I want to do the equivalent of <a href="files://c:\" target="new">A Link</a>
in a win form.
 
X

xcode

If you created the WinForm App, you can do that as follow:

System.Diagnostics.Process.Start("C:\\");



I have tried it , and passed.
 

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

Top