user select record to be printed

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Good afternoon,

I have a continuous form which lists all the record in a table (list of
customers). I have added a checkbox so that a user can select/deselect which
records need to be used to generate a fax.

1- I want to have a cmd button which will select all the check boxes. How
can this be done?

2- How would I then run through the selected records to generate the fax?

Thank you,

Daniel
 
I managed to get the answer to my first question:

***
Dim ctl As Control

For Each ctl In Me.Controls
If ctl.ControlType = acCheckBox Then
ctl.Value = True
End If
Next
***
but my 2nd question still remains.

Daniel
 
Back
Top