pleasehelpalot
Instructor
I hace an Access application with a command button that I want to open an Oracle application. This is the 'on click' event code I'm trying but it can't find the fmx file.
On Error GoTo Err_CommandLP_Click
Dim stAppName As String
stAppName = "C:\dev6i\BIN\ifrun60.EXE C:\PTS\FCOM0010.fmx lapspur/lapspur@personE"
Call Shell(stAppName, 1)
Exit_CommandLP_Click:
Exit Sub
Err_CommandLP_Click:
MsgBox Err.Description
Resume Exit_CommandLP_Click
I'm out of my league with this so I'd appreciate any help help.
On Error GoTo Err_CommandLP_Click
Dim stAppName As String
stAppName = "C:\dev6i\BIN\ifrun60.EXE C:\PTS\FCOM0010.fmx lapspur/lapspur@personE"
Call Shell(stAppName, 1)
Exit_CommandLP_Click:
Exit Sub
Err_CommandLP_Click:
MsgBox Err.Description
Resume Exit_CommandLP_Click
I'm out of my league with this so I'd appreciate any help help.