jpkeller55
Technical User
I am using the following code on an Access 2002 form that opens an excel file (FLNcalculator.xls) - works fine.
Is there a way to make the button open the folder so the user could select any of the excel files stored in that folder?
Thanks!
Is there a way to make the button open the folder so the user could select any of the excel files stored in that folder?
Code:
Private Sub Command16_Click()
Set Sh = CreateObject("WScript.Shell")
Sh.Run Chr(34) & "W:\PAH\Fln\FLNcalculator.xls" & Chr(34)
End Sub