Merging several tables onto one form

  • Thread starter Thread starter Nikki
  • Start date Start date
N

Nikki

Hello

Im having real trouble i hope someone can help. I want to
have an 'order form' where by most fields from different
tables are displayed e.g. client information, payment
information, product online. I have tried building a query
and basing the form on this query but it only displays a
blank screen in the user view (this happens when using
wizards as well)

Can anyone help?

Nikki
 
Nikki said:
Hello

Im having real trouble i hope someone can help. I want to
have an 'order form' where by most fields from different
tables are displayed e.g. client information, payment
information, product online. I have tried building a query
and basing the form on this query but it only displays a
blank screen in the user view (this happens when using
wizards as well)

Can anyone help?
Hi
It probably has to do with the way the tables are joined together. Post the
SQL (open the query, then drop down the query designer/viewer button to see
the SQL) here, and someone would have a better idea of where the problem
could be.

Marc
 
Nikki said:
Hello

Im having real trouble i hope someone can help. I want to
have an 'order form' where by most fields from different
tables are displayed e.g. client information, payment
information, product online. I have tried building a query
and basing the form on this query but it only displays a
blank screen in the user view (this happens when using
wizards as well)

Combining multiple tables into a single query is useful for reporting
purposes, but is usually not a good solution for a form (if you want to be
able to edit the data). Most multi-table queries (especially when you
exceed more than a couple tables) will not be updateable as it becomes
increasingly difficult for the database engine to know which tables the
changes should be applied to.

In general you are better off using forms with subforms where each form is
bound to a single table.
 
Back
Top