Get selected file name in a OpenFileDialog : OpenFileDialog « GUI « VB.Net Tutorial






Imports System.Drawing
Imports System.Drawing.Drawing2D
Imports System.Windows.Forms

public class OpenFileDialogSelectedFileName
   public Shared Sub Main
        Dim FileDB As New OpenFileDialog()

        If (FileDB.ShowDialog() = DialogResult.OK) Then
            Console.WriteLine("File: " & FileDB.FileName)
        Else
            Console.WriteLine("User selected Cancel")
        End If

   End Sub
End class








14.63.OpenFileDialog
14.63.1.Prevent dialog box from validating file
14.63.2.File Open/Save dialogFile Open/Save dialog
14.63.3.Open File Dialog FilterOpen File Dialog Filter
14.63.4.Set OpenFileDialog Filter and get selected file nameSet OpenFileDialog Filter and get selected file name
14.63.5.Set InitialDirectory and FilterIndex for OpenFileDialogSet InitialDirectory and FilterIndex for OpenFileDialog
14.63.6.Get selected file name in a OpenFileDialog
14.63.7.Use OpenFileDialog to load image to PictureBoxUse OpenFileDialog to load image to PictureBox