Friday
Registered User.
- Local time
- Today, 05:50
- Joined
- Apr 11, 2003
- Messages
- 540
I have a file that users input background investigation data into. It is a simple, flat file that is not related to any other data. Currently, from the main menu, they just click a button and a form appears with a list box populated by a query showing all the records sorted in last name. They scan this list to see if the record they have already exists (the list shows last name, first name and SSN). If not, the form has a button on it that takes them to the entry screen. If the record exists, then they can click on that line in the list box, which brings up that record, and they can check to see if any updates are necessary. The file is getting a little big for this type of process. What I would like to do is this: From the main menu, present the user with a prompt for the subjects last name, which is presented to a query. Easy. If the last name exists in the table, a listbox populated with all the records containing the matched last name appears, allowing the user to check for his record. if the last name does not exist in the table (rowcount =0), go straight to the blank data entry form. I seem to have trouble with the sequence of events, so I am looking for design ideas here. Case statement? Sorry this is so wordy.