Can I use two forms to enter data into one record?

G

Guest

I have a form that I use for data entry for audits. On this form I have
fields for comments on 5 different areas. I have limited it to five because
I need the form to be displayed on one screen without scrolling. Is there
anyway to use a second form to enter data onto the same record. What I would
like to happen is for the user to enter comments on the first form, click a
button that brings up the second form. Enter data onto the second form.
With all of the data entered to be stored in one record for reporting. Any
suggestions?
 
R

RBear3

Why not just use a tab control on your form with the main fields on one tab
and other fields on the second tab?

Or, since you seem to be adding in multiple comments related to one record,
create a normalized one-to-many relationship. You would then have your main
form with all the fields, and a continuous sub-form where one or more
comments could be added.
 
S

SusanV

How about using a Tab Control to group your controls? Users can then fill in
one section of the record, tab to the next page, enter another group of
entries, etc...
 
G

Guest

were you able to do this?i;ve got the same problem but i cant usde tab
control because doent work for me..
cheers
 
M

missinglinq via AccessMonster.com

All you need to know about tabbed pages:

First thing to remember is that the Tabbed Pages are all part of a single
form; think of it as a really long form turned on its side. Because it is all
one form, all referrencing to any contol on it is done in the same manner as
if they were all on one single screen. Create a form in Design View. Goto the
toolbox and click on the Tabbed Control icon; it actually looks like several
manila file folders. Place it on your form and adjust the size to your liking.
If you need more than the two tabbed pages it initially gives you, click on
the tabbed control to select it. Goto Insert and click on Tabbed Control Page
and another tabbed page will be added. Do this as many times as neccessary.

This is the really important part: when you go to add a control to a tabbed
page, you must first click to select one of the pages, then add the control.
Otherwise, the control will be added to the form itself, and will show thru
on all tabbed pages!

Once you have the form's Control Source (your table or a query) set up, you
simple add controls as you normally would, heeding the above paragraph.

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000

Message posted via AccessMonster.com
 
R

Rick Brandt

balla said:
were you able to do this?i;ve got the same problem but i cant usde tab
control because doent work for me..
cheers

Please elaborate on "doesn't work". A TabControl is merely a way to make a
larger form fit on the screen. If one giant form would do the job then
there is no reason why a form with a TabControl cannot be made to work.

This will usually cause write conflicts because to Access one user editing
the same record with two forms is identical to two completely different
users editing the same record. Always saving and refreshing as you move
between forms "might' solve that problem, but then you have difficulties
with required fields and other validation.

Use a single form with a TabControl. If desired you can even set the style
of the TabControl to "None" and use buttons to change pages. This would
give almost the same appearance as separate forms to the user.
 

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