Search results

  1. A

    Sorting a Report

    I need to sort a report according to a value that is obtained in one of the text boxes in it. I have read on this forum that this is impossible and that a report can only be sorted based on the fields available in the table/query it is based on. Is this true? I also read that I must build...
  2. A

    Validation

    In my database when a combo box is changed to a certain value a validation rule is supposed to get turned on in an adjacent text box. My code works but it lets me tab into the now restricted text box (it's empty) and tab out of it without getting an error message. The only way I can trigger the...
  3. A

    "Object variable or With block variable not set" (Run-time erro '91')

    I get the above error message when I click on a listbox that's inside a form. Here's the code that causes the problem: Edit:The set rs = ..... line causes the error. Private Sub Search_Area_AfterUpdate() Dim rs As Object Set rs = Me.Recordset.Clone rs.FindFirst "[Applicant...
Back
Top Bottom