What is the good way to design this form

T

Tim

I have a form that is bound to a table (tblSchool) as a record source. This
table mostly includes a primary key and foreign keys from other tables. For
example, tblSchool.studID (PK), majorID (FK), and minorID (FK). [majorID]
links to tblMajor and minorID links to tblMinor.
This form is a data entry form and also allows the user to view existing
records. How can I design it so the user can understand what this form is
about? For example, the form should show studID, name, major, and minor.
Thanks!
 
J

Jeff Boyce

Tim

I'm with Bruce ... "how" depends on "what".

You want your users to view existing records and do data entry. OK, that's
part of "what".

You want your users to "understand what this form is about" ... do you mean
that the on-screen instructions, the Control Tips and the design are sooooo
intuitive that any idiot off the street can sit down and use it correctly?
.... or (I suspect) do you mean you want folks who already understand the
concepts of schools and students and work with this kind of data every day
to see how they could use your forms/application to help them do their job
.... which is ?!?

"How" depends on "what"!

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.
 
J

John W. Vinson

I have a form that is bound to a table (tblSchool) as a record source. This
table mostly includes a primary key and foreign keys from other tables. For
example, tblSchool.studID (PK), majorID (FK), and minorID (FK). [majorID]
links to tblMajor and minorID links to tblMinor.
This form is a data entry form and also allows the user to view existing
records. How can I design it so the user can understand what this form is
about? For example, the form should show studID, name, major, and minor.
Thanks!

Typically you will use Combo Boxes on the form; these would *store* the
numeric ID while *displaying* human readable text.

If this isn't the problem... please explain what is!
 
T

Tim

Thank you all of you for interesting at the topic. Bruce gave a very good
example. You guys are right about using the combo box to store the ID while
displaying the human readable text. I got it and it works!
Thanks again!!!


John W. Vinson said:
I have a form that is bound to a table (tblSchool) as a record source. This
table mostly includes a primary key and foreign keys from other tables. For
example, tblSchool.studID (PK), majorID (FK), and minorID (FK). [majorID]
links to tblMajor and minorID links to tblMinor.
This form is a data entry form and also allows the user to view existing
records. How can I design it so the user can understand what this form is
about? For example, the form should show studID, name, major, and minor.
Thanks!

Typically you will use Combo Boxes on the form; these would *store* the
numeric ID while *displaying* human readable text.

If this isn't the problem... please explain what is!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top