Code:
Try
OpenFileDialog1.Filter = "DLL (*.dll) |*.dll"
OpenFileDialog1.ShowDialog()
Dim FileName As String
FileName = OpenFileDialog1.FileName.Substring(OpenFileDialog1.FileName.LastIndexOf("\"))
Dim DllFileName As String = FileName.Replace("\", "")
Me.TextBox2.Text = (DllFileName)
Catch ex As Exception
MessageBox.Show("Please Select A File", "Al-Qaeda Injector - V2", MessageBoxButtons.OK, MessageBoxIcon.Error)
End Try
Approved...if you update, just edit your post and I'll look at the new attachment.