Hi,
Just wanted to know if its possible to use a check box to control individual records on a continuous form. When you check it checks all the records. The checkbox is a bound control.
I have two command button to select two different forms. and I wanted to be able to select either per check box, with the other command button invisble.
This is what i have code I have used.
However it just changes both command buttons at the same time..
Any ideas would be appreciated.
Thank you.
KP
Just wanted to know if its possible to use a check box to control individual records on a continuous form. When you check it checks all the records. The checkbox is a bound control.
I have two command button to select two different forms. and I wanted to be able to select either per check box, with the other command button invisble.
This is what i have code I have used.
Code:
Private Sub PrintSch_BeforeUpdate(Cancel As Integer)
If Me.PrintSch = True Then
Me.Schedule1.Visible = True
Me.Schedule2.Visible = False
Else
Me.Schedule1.Visible = False
Me.Schedule2.Visible = True
End If
End Sub
However it just changes both command buttons at the same time..
Any ideas would be appreciated.
Thank you.
KP