Add a SubForm from a table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a button within a form, that when clicked, will import data from a
file into a new table.

I would like the data in the new table to be displayed in the current form.
From what I can see, I need to use a SubForm. I can place the SubForm
manually, but I would like it to appear after the import.

So how do I show a table will my form?

Thanks for any help.
 
Simon,
Place your subform manually, and then hide it (Invisible = Yes).
At the time you want to see it... Invisible = No.

Or, I sometimes use Subform.Height = 0 and Subform.Width = 0 instead of
Invisible. This allows the Sub to remain "active" while still not being
visible.
hth
Al Camp
 
Back
Top