View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
jazzy jazzy is offline
external usenet poster
 
Posts: 1
Default excel vba browse file

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