BlueStarBrite
Registered User.
- Local time
- Today, 03:24
- Joined
- Jan 15, 2009
- Messages
- 23
Ok, lets see if I can explain my issue clearly. I need some guidance in the right direction. I'm a newbie to Access, using v2003.
I have a table named ActionSteps with 2 fields: ActionID & ActionDescrip
I have another table named ClientActions tied to the ActionSteps table.
I want to create a form (sorta of like a checklist) that will list each ActionId and ActionDescrip.
For each Action/Step, I want to be able to create a checkbox for each corresponding action. Once the checkbox is checked, I want to automatically populate a 'CheckedDate' and a 'CheckedBy' (which is the username who checked the box. Otherwise, the CheckedDate and CheckedBy is not visible. The visible part I know how to do (if checkbox1 = true then txtbox1.visible = true, etc).
Once a checkbox is checked, I want to have a button to save the current record. Wondering if I would put the code for the auto populated name and date in the AfterUpdate event here
Question #1: How do I auto populate who checked the box and the date? ( Would i use: Date = now())
Question #2: Once the checkbox is checked for each step, how do record that action in my ClientActions table? (I'm thinking along the lines of I would need to create a bound checkbox to my table
)
Question #3: How do I lock the checkbox once it has initally been checked
Thanks in advance for your help!
I have a table named ActionSteps with 2 fields: ActionID & ActionDescrip
I have another table named ClientActions tied to the ActionSteps table.
I want to create a form (sorta of like a checklist) that will list each ActionId and ActionDescrip.
For each Action/Step, I want to be able to create a checkbox for each corresponding action. Once the checkbox is checked, I want to automatically populate a 'CheckedDate' and a 'CheckedBy' (which is the username who checked the box. Otherwise, the CheckedDate and CheckedBy is not visible. The visible part I know how to do (if checkbox1 = true then txtbox1.visible = true, etc).
Once a checkbox is checked, I want to have a button to save the current record. Wondering if I would put the code for the auto populated name and date in the AfterUpdate event here

Question #1: How do I auto populate who checked the box and the date? ( Would i use: Date = now())
Question #2: Once the checkbox is checked for each step, how do record that action in my ClientActions table? (I'm thinking along the lines of I would need to create a bound checkbox to my table

Question #3: How do I lock the checkbox once it has initally been checked
Thanks in advance for your help!
Last edited: