Hi all,
I have textbox1 and commandbutton3 in userform.
Commandbutton3 has the below code:
[code]
Private Sub CommandButton3_Click()
x = Application.GetOpenFilename(FileFilter:="Excel Files (*.xls), *.xls", Title:="Choose File", MultiSelect:=False)
MsgBox "You selected " & x
End Sub
[code]...