Hi All,
I found out that it is hard to write code for a report. What I want to do is the following:
I want a report that is exactly the same as the results showing on a form. Because a Form is not for printing I use a report. On the form I have a checklist wich depends whatever the value of the 'sourcefield' is. I used this code:
Private Sub Checklist1_BeforeUpdate(Cancel As Integer)
If [att].Value = True Then
Checklist1.Value = True
End If
End Sub
Now why can't I use this same code for a report?
I found out that it is hard to write code for a report. What I want to do is the following:
I want a report that is exactly the same as the results showing on a form. Because a Form is not for printing I use a report. On the form I have a checklist wich depends whatever the value of the 'sourcefield' is. I used this code:
Private Sub Checklist1_BeforeUpdate(Cancel As Integer)
If [att].Value = True Then
Checklist1.Value = True
End If
End Sub
Now why can't I use this same code for a report?