Opening Forms in a subform

J

Jamie

I would like to open different forms in one sub-form on my
page. Is this possible?

Thanks in Advance

Jamie
 
A

Allen Browne

Set the SourceObject of the subform control.

Assuming a subform control named frmGeneric, into which you want to load a
form named "MyForm":

Me.frmGeneric.SourceObject = "MyForm"
 
J

Jamie

Thank You
-----Original Message-----
Set the SourceObject of the subform control.

Assuming a subform control named frmGeneric, into which you want to load a
form named "MyForm":

Me.frmGeneric.SourceObject = "MyForm"

--
Allen Browne - Microsoft MVP. Perth, Western Australia.

Reply to group, rather than allenbrowne at mvps dot org.




.
 

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