C
Chris Freeman
I have a continuous form in Access 2003 with checkboxes to indicate which
records get processed by entering a date in the date field.
The code:
Me.Void_Import_Date = Me.Text74
DoCmd.DoMenuItem acFormBar, acRecordsMenu, 5, , acMenuVer70
Me.Check88 = True
The problems:
1. using plain checkboxes results in all checkboes getting clicked when you
click one box.
Solution:
I put the boxes in a frame, and this picks up just the associated values for
the record.
New problems:
1. Frame doesn't seem to allow unchecking the box.
2. The check boxes aren't changing from unchecked to checked status.
3. Can't seem to have the check box recognized to use a "Select All" code: I
get an error stating that I can't assign a value to the object:
Private Sub chk_SelectAll_Click()
If Me.chk_SelectAll = False Then
Me.Frame76.Controls!Check88 = True
Else
Me.Frame76.Controls!Check88 = True
End If
End Sub
Thanks for any help in advance
Is there a work around, or do I have to use
records get processed by entering a date in the date field.
The code:
Me.Void_Import_Date = Me.Text74
DoCmd.DoMenuItem acFormBar, acRecordsMenu, 5, , acMenuVer70
Me.Check88 = True
The problems:
1. using plain checkboxes results in all checkboes getting clicked when you
click one box.
Solution:
I put the boxes in a frame, and this picks up just the associated values for
the record.
New problems:
1. Frame doesn't seem to allow unchecking the box.
2. The check boxes aren't changing from unchecked to checked status.
3. Can't seem to have the check box recognized to use a "Select All" code: I
get an error stating that I can't assign a value to the object:
Private Sub chk_SelectAll_Click()
If Me.chk_SelectAll = False Then
Me.Frame76.Controls!Check88 = True
Else
Me.Frame76.Controls!Check88 = True
End If
End Sub
Thanks for any help in advance
Is there a work around, or do I have to use