Opening Forms in a subform

  • Thread starter Thread starter Jamie
  • Start date Start date
J

Jamie

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

Thanks in Advance

Jamie
 
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"
 
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.




.
 
Back
Top