• Too Few Parameters (A2k/xp)

    Author
    Topic
    #436151

    I get the infamous “Too few parameters, expected 1” message on this line of code:

    Set rs = db.OpenRecordset(“qryTeenAdventureCampLetter”, dbOpenDynaset)

    Any and all assistance is appreciated. TIA.

    Viewing 0 reply threads
    Author
    Replies
    • #1033031

      You will get this error if qryTeenAdventureCampLetter has a parameter in the Criteria line, e.g. [Enter Last Name] or something similar, or if it refers to a control on a form, e.g. [Forms]![frmDataEntry]![txtLastName]. Does one of these apply?

      • #1033033

        It has a parameter that refers to a control on a form.

        • #1033040

          Say that your query refers to [Forms]![frmDataEntry]![txtLastName]
          You can change the code as follows:

          Dim qdf As DAO.QueryDef
          Set qdf = db.QueryDefs(“qryTeenAdventureCampLetter”)
          qdf.Parameters(“[Forms]![frmDataEntry]![txtLastName]”) = [Forms]![frmDataEntry]![txtLastName]
          Set rs = qdf.OpenRecordSet(dbOpenDynaset)

    Viewing 0 reply threads
    Reply To: Too Few Parameters (A2k/xp)

    You can use BBCodes to format your content.
    Your account can't use all available BBCodes, they will be stripped before saving.

    Your information: