When I click the button I get this Error
What am I doing wrong?
"Run-time error '53' file not found"
What am I doing wrong?
Code:
Private Sub Command8_Click() 'Note: This is to open S Drive file for notes Managment only On Error GoTo Err_Command8_Click Dim stAppName As String stAppName = "S:\Security\Operations Support\Intake DB" Call Shell(stAppName, 1) Exit_Command8_Click: Exit Sub Err_Command8_Click: MsgBox Err.Description Resume Exit_Command8_Click End Sub
Comment