Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by OsoRojo

  1. OsoRojo

    Loading default data into a popup form

    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]...
  2. OsoRojo

    Loading default data into a popup form

    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...
  3. OsoRojo

    OverFlow Error in VBA code

    I have a breakpoint set at the resume line. How can I tell what line caused the error?
  4. OsoRojo

    OverFlow Error in VBA code

    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...

Part and Inventory Search

Back
Top