theKruser
Registered User.
- Local time
- Today, 05:56
- Joined
- Aug 6, 2008
- Messages
- 122
I have a db that I am revamping. My question is more along the lines of proper development procedures.
Generally speaking, is it better to include combo boxes programmatically in the tbl or should all combo boxes be incorporated in frms only?
Does having a combo box in a tbl cause problems in the future?
Explanation: suppose 2 tbls:
tblPERSONNEL
-Employee# (pk)
-LName
-FName
-EquipmentTypeID (fk)
tblEQUIPMENT
-EquipmentTypeID (pk)
-Name
-Description
When looking in tblPERSONNEL, is it better for EquipmentTypeID to simply be a text box? Right now it is a combo box:
Bound Column: 1
Row Source: SELECT tblEQUIPMENT.Equip ...
Column Count: 2
Column Width: 0";1"
etc, etc, etc
Please let me know how you do things. If I should do it a different way...now is the time to make the changes.
Thank you for your time and help! Have a great day!!
Generally speaking, is it better to include combo boxes programmatically in the tbl or should all combo boxes be incorporated in frms only?
Does having a combo box in a tbl cause problems in the future?
Explanation: suppose 2 tbls:
tblPERSONNEL
-Employee# (pk)
-LName
-FName
-EquipmentTypeID (fk)
tblEQUIPMENT
-EquipmentTypeID (pk)
-Name
-Description
When looking in tblPERSONNEL, is it better for EquipmentTypeID to simply be a text box? Right now it is a combo box:
Bound Column: 1
Row Source: SELECT tblEQUIPMENT.Equip ...
Column Count: 2
Column Width: 0";1"
etc, etc, etc
Please let me know how you do things. If I should do it a different way...now is the time to make the changes.
Thank you for your time and help! Have a great day!!