Hi again
I want to add a button to a form that when clicked displays a browser window so the user can enter a path to a directory.
Anyone knows how this is done?
Ty in advance!!
Printable View
Hi again
I want to add a button to a form that when clicked displays a browser window so the user can enter a path to a directory.
Anyone knows how this is done?
Ty in advance!!
like this?
Code:Process.Start("http://www.ex-designz.net");
I didn't get it ayan.
I mean a window similar to those windows we get in the install wizards, where we can browse a path.
You mean the OpenFile Dialog or FolderBrowser ?
perhaps pirate... but i supposed there's no folderbrowser in 2k2. am i missing something? but with openfiledialog...
thanx...Code:(new OpenFileDialog()).ShowDialog();
I mean a FolderBrowser but how can i get it?
I'm using Visual Studio 2002....
i could be wrong...
Code:System.Diagnostics.Process.Start("explorer","d:\\");
brown i want a folder browser not in diagnostic mode...
That's supported in .NET Framwork 1.1 ONLY . There's another way using lengthy API calls which no one recommend .Quote:
Originally posted by PorT_Alex
I mean a FolderBrowser but how can i get it?
I'm using Visual Studio 2002....
Thanks Pirate!