using check box to select day off

  • Thread starter Thread starter Steve
  • Start date Start date
S

Steve

Hello, I have a table with EmplNbr and DayOff fields. I
want a user interface where the employee number is on the
left followed by seven check boxes, one for each day of
the week. From this screen I want the user to be able to
select the employees regular days off. I can't figure it
out. This is a scheduling/attendance database.

Thanks for the help.
 
Make your checkboxes part of an Option Group. Make the option group
bound to the DayOff field (DayOff should be a numeric integer field).
The number of the checkbox (1-7) will be recorded in the field when a
check box is checked.

Pavel
 
Back
Top