Subform display all records in tabular form

R

Rachel

Hi:

Both my form and subform need to display data from the
same table.

Parent form: Columnar layout
Subform: tabular layout

Problem: When the subform is linked to the parent form
by the primary key it only displays one record at a time
instead of all the records. I want the subform to
display the entire table and all the manipulations as
records are edited, added and so forth.

Also, I have a problem where the fields change, but the
navigation record displayed on the subforms navigation
record manipulation tab on the bottom of the subform
stays on record one. Since both the subform and the
parent form are from the same exact table with the same
exact fields I do not understand why the record display
does not change with each record movement on the parent
form. How can I fix this? (Is there a way to hide this
so that it does not confuse the user if nothing can be
done?)

Any help is appreciated,

Rachel
 
J

John Vinson

Hi:

Both my form and subform need to display data from the
same table.

I hope you're aware that having the same record open twice (on form
and subform) for editing will make it impossible to edit the data one
place or the other. Is that OK?
Parent form: Columnar layout
Subform: tabular layout

Problem: When the subform is linked to the parent form
by the primary key it only displays one record at a time
instead of all the records. I want the subform to
display the entire table and all the manipulations as
records are edited, added and so forth.

Then set the Master Link Field and Child Link Field properties to
blank; you'll also need to Requery the subform in the AfterUpdate
event of the mainform:

Private Sub Form_AfterUpdate()
Me!subformname.Requery
End Sub
Also, I have a problem where the fields change, but the
navigation record displayed on the subforms navigation
record manipulation tab on the bottom of the subform
stays on record one. Since both the subform and the
parent form are from the same exact table with the same
exact fields I do not understand why the record display
does not change with each record movement on the parent
form. How can I fix this? (Is there a way to hide this
so that it does not confuse the user if nothing can be
done?)

You can set the Form's properties to hide the navigation buttons,
sure: view the Form's properties and set its Navigation Buttons
property to No. Are you perhaps just repeatedly overwriting the data
in the first record, rather than navigating to new records?
 

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