B
Buddy
I have a continuous form based on a select query. The query selects all
records based on a yes/no field. I want to put a button that will first print
out a saved report and then change the value of each record yes/no field to
yes.
I have tried the following but it only changes the first record:
For Each ctlCurr In Me.Controls
If TypeOf ctlCurr Is CheckBox Then
ctlCurr = True
End If
Next ctlCurr
DoCmd.PrintOut
On the DoCmd I want to be able to print out a report I have.
records based on a yes/no field. I want to put a button that will first print
out a saved report and then change the value of each record yes/no field to
yes.
I have tried the following but it only changes the first record:
For Each ctlCurr In Me.Controls
If TypeOf ctlCurr Is CheckBox Then
ctlCurr = True
End If
Next ctlCurr
DoCmd.PrintOut
On the DoCmd I want to be able to print out a report I have.