Rodeo Clown
New member
- Local time
- Today, 13:41
- Joined
- May 27, 2024
- Messages
- 14
Hello everyone. Disclaimer: this project & it's data is confidential so I cannot post any code or the DB itself.
I want to track whether or not an entity has been issued warning(s) for an infraction.
The Enforcement_T has the following fields:
1. entity_ID (autonumber, PK)
2. EnforcementDate (date/time)
3. EnforcementType_ID (number, foreign key - relates to EnforcementType_T - below)
4. 1st Warning (checkbox - Yes/No)
5. 2nd warning (checkbox - Yes/No)
3. Legal Action initiated (checkbox - Yes/No)
The EnforcementType_T has the following fields:
1. 1st warning issued
2. 1st warning resolved
3. 2nd warning issued
4. 2nd warning resolved
5. Legal Action initiated
6. Legal Action resolved
Parameters: (I hope this makes sense...)
1. There can only be one 1st warning at any given time. Likewise there can only be one 2nd warning or legal action initiated at any given time.
2. neither the 2nd warning issued, 2nd warning resolved, legal action initiated or legal action resolved can be selected if the 1st warning is false (this holds true as we progress down the list)
3. It is possible to have 1st & 2nd warning and legal action initiated all set to true, in which case the only choice presented to the user is legal action resolved
I've tried using a combo box, but apparently it is not optional to "grey-out" (i.e. disable) specific rows.
I've also tried using a list box, but apparently you cannot grey out specific rows in that control either.
So my question is this: What kind of control can I use to accomplish this feature? I thought about a bunch of check boxes, but don't really like the clutter on the form. I also thought about using a query to display the available options in a listbox to the end user.
I want to track whether or not an entity has been issued warning(s) for an infraction.
The Enforcement_T has the following fields:
1. entity_ID (autonumber, PK)
2. EnforcementDate (date/time)
3. EnforcementType_ID (number, foreign key - relates to EnforcementType_T - below)
4. 1st Warning (checkbox - Yes/No)
5. 2nd warning (checkbox - Yes/No)
3. Legal Action initiated (checkbox - Yes/No)
The EnforcementType_T has the following fields:
1. 1st warning issued
2. 1st warning resolved
3. 2nd warning issued
4. 2nd warning resolved
5. Legal Action initiated
6. Legal Action resolved
Parameters: (I hope this makes sense...)
1. There can only be one 1st warning at any given time. Likewise there can only be one 2nd warning or legal action initiated at any given time.
2. neither the 2nd warning issued, 2nd warning resolved, legal action initiated or legal action resolved can be selected if the 1st warning is false (this holds true as we progress down the list)
3. It is possible to have 1st & 2nd warning and legal action initiated all set to true, in which case the only choice presented to the user is legal action resolved
I've tried using a combo box, but apparently it is not optional to "grey-out" (i.e. disable) specific rows.
I've also tried using a list box, but apparently you cannot grey out specific rows in that control either.
So my question is this: What kind of control can I use to accomplish this feature? I thought about a bunch of check boxes, but don't really like the clutter on the form. I also thought about using a query to display the available options in a listbox to the end user.