Click here to Skip to main content
15,922,894 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Visual Basic Evaluator Problem...VB 2005 express Pin
ncjlee24-Aug-07 22:38
ncjlee24-Aug-07 22:38 
GeneralRe: Visual Basic Evaluator Problem...VB 2005 express Pin
Luc Pattyn24-Aug-07 23:54
sitebuilderLuc Pattyn24-Aug-07 23:54 
GeneralRe: Visual Basic Evaluator Problem...VB 2005 express Pin
ncjlee24-Aug-07 23:59
ncjlee24-Aug-07 23:59 
GeneralRe: Visual Basic Evaluator Problem...VB 2005 express Pin
Luc Pattyn25-Aug-07 0:13
sitebuilderLuc Pattyn25-Aug-07 0:13 
AnswerRe: Visual Basic Evaluator Problem...VB 2005 express Pin
Paul Conrad25-Aug-07 10:23
professionalPaul Conrad25-Aug-07 10:23 
QuestionOpen Dialog Pin
Kiran Pinjala24-Aug-07 20:13
Kiran Pinjala24-Aug-07 20:13 
AnswerRe: Open Dialog Pin
nitin324-Aug-07 20:47
nitin324-Aug-07 20:47 
AnswerRe: Open Dialog Pin
Rupesh Kumar Swami24-Aug-07 20:50
Rupesh Kumar Swami24-Aug-07 20:50 
hi kiran,
try this

'
 First create a FolderBrowserDialog object<br />
Dim FolderBrowserDialog1 As New FolderBrowserDialog<br />
 <br />
' Then use the following code to create the Dialog window<br />
' Change the .SelectedPath property to the default location<br />
With FolderBrowserDialog1<br />
    ' Desktop is the root folder in the dialog.<br />
    .RootFolder = Environment.SpecialFolder.Desktop<br />
    ' Select the C:\Windows directory on entry.<br />
    .SelectedPath = "c:\windows"<br />
    ' Prompt the user with a custom message.<br />
    .Description = "Select the source directory"<br />
    If .ShowDialog = DialogResult.OK Then<br />
        ' Display the selected folder if the user clicked on the OK button.<br />
        MessageBox.Show(.SelectedPath)<br />
    End If<br />
End With


hope this helps

Rupesh Kumar Swami
Software Engineer,
Integrated Solution,
Bikaner (India)

My Company

QuestionDos mode printing (vb.net) Pin
i gr824-Aug-07 18:48
i gr824-Aug-07 18:48 
AnswerRe: Dos mode printing (vb.net) Pin
Dave Kreskowiak25-Aug-07 6:57
mveDave Kreskowiak25-Aug-07 6:57 
Questioni cannot see the MainMenu! Pin
Rharzkie24-Aug-07 17:40
Rharzkie24-Aug-07 17:40 
AnswerRe: i cannot see the MainMenu! Pin
Dave Kreskowiak24-Aug-07 18:33
mveDave Kreskowiak24-Aug-07 18:33 
GeneralRe: i cannot see the MainMenu! Pin
Rharzkie24-Aug-07 21:10
Rharzkie24-Aug-07 21:10 
GeneralRe: i cannot see the MainMenu! Pin
Christian Graus24-Aug-07 21:36
protectorChristian Graus24-Aug-07 21:36 
GeneralRe: i cannot see the MainMenu! Pin
Rharzkie24-Aug-07 21:59
Rharzkie24-Aug-07 21:59 
GeneralRe: i cannot see the MainMenu! Pin
Christian Graus25-Aug-07 0:48
protectorChristian Graus25-Aug-07 0:48 
GeneralRe: i cannot see the MainMenu! Pin
Rharzkie25-Aug-07 3:17
Rharzkie25-Aug-07 3:17 
QuestionInstallation and the registry Pin
vsmash24-Aug-07 16:05
vsmash24-Aug-07 16:05 
AnswerRe: Installation and the registry Pin
The ANZAC24-Aug-07 16:46
The ANZAC24-Aug-07 16:46 
QuestionWrting your name in a picture box Pin
steve_rm24-Aug-07 12:42
steve_rm24-Aug-07 12:42 
AnswerRe: Wrting your name in a picture box Pin
Christian Graus24-Aug-07 17:22
protectorChristian Graus24-Aug-07 17:22 
QuestionVB.NET Question Pin
Tom Wright24-Aug-07 9:39
Tom Wright24-Aug-07 9:39 
AnswerRe: VB.NET Question Pin
Christian Graus24-Aug-07 12:00
protectorChristian Graus24-Aug-07 12:00 
AnswerRe: VB.NET Question Pin
Colin Angus Mackay24-Aug-07 13:37
Colin Angus Mackay24-Aug-07 13:37 
GeneralRe: VB.NET Question Pin
Paul Conrad25-Aug-07 10:26
professionalPaul Conrad25-Aug-07 10:26 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.