The concept of a sub form is generally applicable to the situation where you
want to "link" information that is in two tables (not one). An example might
be an invoice (one table) and the items on the invoice (another table)
[eg Invoices - invoiceId, invoice date InvoiceItems InvoiceItemId,
InvoiceId, ItemDescription, ItemCost.] These would llink on InvoiceId. The
main Form would be a single record form and the subform mulitiple records.
In the case you are describing:
There ar two options (at least!)
1. Use two forms - one for 'Basic' information and anothe for 'detailed'
information
[you could open the second from the first BUT don't allow edits of the
same information on each form or you will likely get the same 'error' as you
are getting now]
2. Put all the information on one form - then, write some code to 'collapse'
the more detailed information [make the controls have zero size and move
them and make them invisible and while you are doing this have in mind the
code to resize them and move them to the original positions and make them
visible - which you can put into the click event for a button on the always
visible part of the form.
Jim Bunton
> Hi,
>
[quoted text clipped - 21 lines]
> Any ideas let me know,
> Ernst.
Jason - 06 May 2008 07:24 GMT
I've used tabed pages to make things easier ( the tabs can contain fields of
the same table or they can contain subforms)
> The concept of a sub form is generally applicable to the situation where you
> want to "link" information that is in two tables (not one). An example might
[quoted text clipped - 45 lines]
> > Any ideas let me know,
> > Ernst.
Ernst Guckel - 06 May 2008 13:36 GMT
Really what I want to do is design a tab control without using the tab
control. The one built into access is limited. I have 5 command buttons and
five subforms. I then change the source object of a subform control. I
could solve the problem by having them not linked to the main form in anyway
but act like main forms in their own right. The problem is the listbox.
When you select an employee in the listbox I want to change the employee in
the subform.
Ernst.
> I've used tabed pages to make things easier ( the tabs can contain fields of
> the same table or they can contain subforms)
[quoted text clipped - 53 lines]
> > > Any ideas let me know,
> > > Ernst.