Search results

  1. mikekal

    Multi records delete

    When im puting that code doing thar: Dim rs As DAO.Recordset Set rs = Me.RecordsetClone If TickBox Then With rs .MoveFirst Do While Not .EOF .Edit !Select = True .Update .MoveNext...
  2. mikekal

    Multi records delete

    My code on filter is: Private Sub cmdFilter_Click() 'Purpose: Build up the criteria string form the non-blank search boxes, and apply to the form's Filter. 'Notes: 1. We tack " AND " on the end of each condition so you can easily add more search boxes; _ we...
  3. mikekal

    Multi records delete

    Can you give me an example to filter records.I want to filter :date from --- date to and filter with combobox
  4. mikekal

    Multi records delete

    No i have data but returns that:
  5. mikekal

    Multi records delete

    On clear filter have that code: Private Sub cmdReset_Click() 'Purpose: Clear all the search boxes in the Form Header, and show all records again. Dim ctl As control Private Sub cmdReset_Click() 'Purpose: Clear all the search boxes in the Form Header, and show all records again...
  6. mikekal

    Multi records delete

    I have another question.I have a form with filter.When im clear filter the date field returns 30/12/1899.Can i solve that.That problem made after put the code of the TickBoxTemp base.Thank you
  7. mikekal

    Multi records delete

    Thank you so muck.That i want to do.Thank you again.
  8. mikekal

    Multi records delete

    Like that i want
  9. mikekal

    Multi records delete

    I want something like that.If i have a lot off records when filtering and selecting all with chechbox,delete only the filtering records
  10. mikekal

    Multi records delete

    thank you for your code but still when filter and SELECT ALL when delete record delete all records of table.That i want is delete only the filter record when im doing that.Thank you again
  11. mikekal

    Multi records delete

    How can do that.Im new in access.Thank you
  12. mikekal

    Multi records delete

    I would like in my example when I filter the name, all the records that I will check with check all to be deleted by pressing delete.But not all, only the filtered.Thank you
  13. mikekal

    Multi records delete

    Can you give me the code on click
  14. mikekal

    Multi records delete

    How can i delete only the checked records
Back
Top Bottom