Here are the two chuncks of code behind the forms:
Main form calling the shipto form
Private Sub cmdShipTo_Click()
On Error GoTo Err_cmdShipTo_Click
Dim stDocName As String
stDocName = "frmShipTo"
DoCmd.OpenForm stDocName, , , , acFormEdit, , Me![ACC]...
I am tring to link a main customer form with a shipto form by the account number. The main form is based on a table that is linked to the shipto by the account number. When the user clicks on the shipto button if there are entries in the shipto table I would like then to appear, if not then just...
I am trying to trap an error in my Access app in the VBA code. At this point the on error gets me the message "overflow".The code I'm using is as follows:
Err_PrepInvoices:
MsgBox "Error: " + Error$, 0, "PrepInvoices"
Resume
What else could I use to find...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.