I'll echo what Mike P. and John V. have said ... a separate form for each
client is ... unusual ... in a well-normalized relational database.
The primary reason for using a separate form for each would be that each
Client had totally different things being stored about them. For example,
if ClientA had a birthdate and a street address, and ClientB had a Dog'sName
and phone number, and ClientC had a AnnualSalary and ... You get the idea.
On the other hand, if each/every client had all/most of:
LastName
FirstName
StreetAddress
City
State
PostalCode
DateOfBirth
then you would only need ONE form, and would only need ONE table.
We haven't focused on your underlying data structure (i.e. tables) because
you were focusing on forms ... but it all STARTS with the data.
More info, please...
Regards
Jeff Boyce
Microsoft Access MVP
--
Disclaimer: This author may have received products and services mentioned
in this post. Mention and/or description of a product or service herein
does not constitute endorsement thereof.
Any code or pseudocode included in this post is offered "as is", with no
guarantee as to suitability.
You can thank the FTC of the USA for making this disclaimer
possible/necessary.
"Michael" <(E-Mail Removed)> wrote in message
news:71572ea3-45de-4738-8168-(E-Mail Removed)...
> Jeff,
> That wizard only walks you through opening one form. I need a
> button that will open different forms based on the client number,
> i.e., newticketformXXX where XXX is the client id of the current form.
|