jiblankman
Registered User.
- Local time
- Today, 12:04
- Joined
- May 27, 2008
- Messages
- 43
I have a form which includes a field for a program description. When a program is chosen, I want to have certain controls available for entry. Programs have overlapping fields.
I have a table in my database that resembles the following (the fields a-d are check boxes):
Program # Field A Field B Field C Field D
P A B C D
1 X X X O
2 X X O X
3 O X X X
4 X X X X
When program 1 is selected, I want to have controls for A, B and C only visible to the user. D would remain null in the associated table.
Is there an easy way to implement this. In the actual database there are currently 11 programs and 12 fields. New programs/fields are added periodically, so I would like to make this as simple as possible so that I am not constantly rewriting code.
Thanks for any help.
I have a table in my database that resembles the following (the fields a-d are check boxes):
Program # Field A Field B Field C Field D
P A B C D
1 X X X O
2 X X O X
3 O X X X
4 X X X X
When program 1 is selected, I want to have controls for A, B and C only visible to the user. D would remain null in the associated table.
Is there an easy way to implement this. In the actual database there are currently 11 programs and 12 fields. New programs/fields are added periodically, so I would like to make this as simple as possible so that I am not constantly rewriting code.
Thanks for any help.