Set OpenFileDialog Filter and get selected file name : OpenFileDialog « GUI « VB.Net Tutorial






Set OpenFileDialog Filter and get selected file name
Imports System.Windows.Forms

public class FileOpenDialogFilter
   public Shared Sub Main
        Dim openFileDialog1 As System.Windows.Forms.OpenFileDialog

        openFileDialog1 = New System.Windows.Forms.OpenFileDialog()
        
        openFileDialog1.Filter = "Word (*.doc) |*.doc;*.rtf|(*.txt) |*.txt|(*.*) |*.*"

        If openFileDialog1.ShowDialog() = DialogResult.OK Then
            Console.WriteLine(openFileDialog1.FileName)
        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