반응형

visual Studio 8.0  

Visual Basic에서 폴더 선택 다이얼로그 예제 입니다. 


        Dim folder As String = ""
        Dim filePath As New FolderBrowserDialog
        filePath.SelectedPath = Application.StartupPath
        If filePath.ShowDialog() = Windows.Forms.DialogResult.OK Then
            folder = filePath.SelectedPath
        End If

        Console.WriteLine(folder)










반응형

+ Recent posts