I have a click button with this code
Private Sub cmdOK_Click()
On Error Resume Next
Logon_OK_Cancel
End Sub
However when i click the button I get this
Compile Error: Expected Variable or Procedure; not module.
I need it to run Logon_OK_Cancel which is a module, so How do I tell it to do it ??
Private Sub cmdOK_Click()
On Error Resume Next
Logon_OK_Cancel
End Sub
However when i click the button I get this
Compile Error: Expected Variable or Procedure; not module.
I need it to run Logon_OK_Cancel which is a module, so How do I tell it to do it ??