Hi,
I'm getting an error when I try to run a shell command to open a file. The error is
"Run-time error '5':
Invalid procedure call or argument"
I am using ACCESS 2003 with
VB 6.3 (Perhaps I am using VBA)
Here is the code below. Please someone help!!!
Code:
Private Sub OpenProposal_Click()
Dim RetVal As Double
RetVal = Shell("C:\db1\Proposals\tes.xls", vbNormalFocus)
End Sub