A
aMack
I have the following Code:
Private Sub Ready_to_Bill_Enter()
If IsNull(Me.[Termination Date]) Then
MsgBox "Cannot Be OK TO BILL if not Terminated"
Cancel = True
Me.Customer_Name.SetFocus
End If
If IsNull(Me.[Customer #]) Then
MsgBox "Cannot be OK TO BILL if No Customer Order #"
Me.Customer_Name.SetFocus
End If
End Sub
This porcess works on my PC but not on our server.
The following error message comes up:
"Compile Error
Can't find project or libraray"
Private Sub Ready_to_Bill_Enter() is highlighted yellow
What is missing for the server version to work?
Thanks
Private Sub Ready_to_Bill_Enter()
If IsNull(Me.[Termination Date]) Then
MsgBox "Cannot Be OK TO BILL if not Terminated"
Cancel = True
Me.Customer_Name.SetFocus
End If
If IsNull(Me.[Customer #]) Then
MsgBox "Cannot be OK TO BILL if No Customer Order #"
Me.Customer_Name.SetFocus
End If
End Sub
This porcess works on my PC but not on our server.
The following error message comes up:
"Compile Error
Can't find project or libraray"
Private Sub Ready_to_Bill_Enter() is highlighted yellow
What is missing for the server version to work?
Thanks