Can't find project or libraray

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top