Hi,
I have a form which allows users to enter details of a ‘case’. This form allows the user to select which offence this case relates to and then select the ‘periods’ of the offence (Eg, quarter ending March 2009, quarter ending June 2009). The offence period details are kept in their own table. The offence periods are presented as a listbox in a sub-form from which users can select or unselect 1 or more periods. The listbox is not ‘bound’ to anything, but rather the values are just populated by running a query. When the user saves the case, the periods the user selected, along with the case number, are written to a separate table.
The way I’ve got it set up at the moment, the user can only select and unselect the periods, they cannot edit the ‘name’ of the period. However each period also has a due date and an offence date. These dates do have a default date put in, however in the majority of cases this changes and so I would like the user to be able to enter it themselves. By presenting it as a listbox, the user is unable to do this. I don’t want to change the offence or due date in the offence period table, I just want them to be able to update it in the sub-form and write it to a separate table when the user saves the case.
I was thinking I could create another form and have it based on the offence period table, and then add the fields I need (Eg, offence period, offence due date, offence date), and also have a checkbox for each period which they could check on or off to select or unselect, but wouldn’t this mean they would be changing the values in the underlying table when they change the date?
Not sure how to go about this….
Cheers,
Jason