I have a form for recording client complaints. The first control is a combo box, cbo_PM, where people can select their names from a drop down list. The rest of the text boxes and combo boxes in the form is for documenting other aspects of the complaint. The problem I have is that people sometimes forget to select their name in cbo_PM. So what I have is a customer complaint without knowing who initiated the complaint.
What I need is to somehow check all the text and combo boxes and if they are not null and cbo_PM is not null, then they can submit the complaint. If any of the text boxes or combo boxes are not null and cbo_PM is null, then it'll prompt them to select their name before allowing them to exit.
Is this possible?
What I need is to somehow check all the text and combo boxes and if they are not null and cbo_PM is not null, then they can submit the complaint. If any of the text boxes or combo boxes are not null and cbo_PM is null, then it'll prompt them to select their name before allowing them to exit.
Is this possible?