> I understand and you are right about not using separate forms. I'm new to
> this and just trying to figure-out a few things. Ultimately I want to create
[quoted text clipped - 26 lines]
> > >
> > > Ted
That was very helpful. I appreciate your taking time to respond in depth. One
last question, if you have the time. I have several fields on my form:
cust_id, name_last, name_first, addr_strt, addr_city and so on. All of these
are based on the fields in the tblcustomer table.
When I select a customer id in the combo box, I want the other fields to
populate with the appropriate data. How do I get that going?
Do I need to base my form on a query rather than a table?
> Typically, text boxes are used for information that is non-recurring that the
> user inputs through the keyboard. A combo box is used when there are a
[quoted text clipped - 43 lines]
> > > >
> > > > Ted
rowiga - 26 Jan 2005 19:49 GMT
I generally don't like to base my form on a query unless the form loads more
than one table. It just leads to complications down the line. Base your form
on the table itself. You can use the form wizard to help you create a form or
use autoform for more of a cruise control approach. Once the form is created,
use the wizard to add an unbound combo box in the form header or footer. The
first screen in the wizard asks you to identify the purpose of the combo box.
Choose the bottom option to "Find a record on my form...."
When the user selects a customer from the combo box, the appropriate data
relative to that customer will display in the form.
> That was very helpful. I appreciate your taking time to respond in depth. One
> last question, if you have the time. I have several fields on my form:
[quoted text clipped - 53 lines]
> > > > >
> > > > > Ted
rowiga - 26 Jan 2005 19:53 GMT
I guess I should clarify something. When you use the wizard to create the
combo box, select the customerid and the customer name. The wizard will give
you the option to hide the first column (customerid) which is what you want
to do. The user doesn't need to know the id to choose the correct record. I
know my customers by name....well most of the time.
> I generally don't like to base my form on a query unless the form loads more
> than one table. It just leads to complications down the line. Base your form
[quoted text clipped - 64 lines]
> > > > > >
> > > > > > Ted