|
-
Jun 14th, 2004, 07:50 PM
#1
Thread Starter
Junior Member
Browser window
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!!
-
Jun 14th, 2004, 09:14 PM
#2
Lively Member
like this?
Code:
Process.Start("http://www.ex-designz.net");
-
Jun 15th, 2004, 07:29 AM
#3
Thread Starter
Junior Member
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.
-
Jun 15th, 2004, 04:21 PM
#4
Sleep mode
You mean the OpenFile Dialog or FolderBrowser ?
-
Jun 15th, 2004, 08:29 PM
#5
Lively Member
perhaps pirate... but i supposed there's no folderbrowser in 2k2. am i missing something? but with openfiledialog...
Code:
(new OpenFileDialog()).ShowDialog();
thanx...
Last edited by ayan; Jun 15th, 2004 at 10:12 PM.
-
Jun 16th, 2004, 12:29 PM
#6
Thread Starter
Junior Member
I mean a FolderBrowser but how can i get it?
I'm using Visual Studio 2002....
-
Jun 21st, 2004, 04:26 AM
#7
Fanatic Member
i could be wrong...
Code:
System.Diagnostics.Process.Start("explorer","d:\\");
-
Jun 21st, 2004, 08:25 AM
#8
Thread Starter
Junior Member
brown i want a folder browser not in diagnostic mode...
-
Jun 21st, 2004, 01:05 PM
#9
Sleep mode
Originally posted by PorT_Alex
I mean a FolderBrowser but how can i get it?
I'm using Visual Studio 2002....
That's supported in .NET Framwork 1.1 ONLY . There's another way using lengthy API calls which no one recommend .
-
Jul 3rd, 2004, 10:07 AM
#10
Thread Starter
Junior Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|