display form-like-data without creating (sub)form

  • Thread starter Thread starter Michael Reb
  • Start date Start date
M

Michael Reb

Hi,

my DB got many objects and I don´t like to create additional forms for every
peace of information which is to be displayed on a form.
Is there any way to display data from a table/query which is linked to a
form´s recordsource without creating an extra subform.
I haven´t found one but am still hoping, because I don´t need more
functionality than what usual table/query datasheet view already got:
No special form layout and coding is done in the main form.
Datasheet view is sufficient and data linking per main form´s code is okay.

I don´t want to solve it via Listboxes, since records in the linked
table/query must be edited or added.

Thanks
Michael
 
You could insert unbound text boxes on your form and
populate them using code. You would also have to write
code to store any changes to these fields back to their
table.
 
Back
Top