I am using the following method to browse for a file:
OpenFileDialog.ShowDialog() PictureNameTextEdit.Text = OpenFileDialog.FileName
if you want just the selected name without Extension you can try this code
Imports System.IO PictureNameTextEdit.Text = Path.GetFileNameWithoutExtension(OpenFileDialog1.FileName)
thanx