Im trying to browse files using a command button in Excel. So far I hav
used the code
Dim FName As Variant
FName = Application.GetOpenFilename("Access Files (*.mdb),*.mdb")
If FName = "" Then
' user clicked cancel
Else
MsgBox FName
End If
And I would like to know where do I go from her
--
Message posted from
http://www.ExcelForum.com