Help with linking two forms (like subform)

  • Thread starter Thread starter Carl J. Hixon
  • Start date Start date
C

Carl J. Hixon

I want to link two forms together much like using a subform however I want
the subform to be a separate modal form. which is opened by a button on the
main form. Any pointers as to how this is done?

Thanks,
Carl
 
Try using DoCmd.OpenForm in the Click method of the button
to open the subForm.

Hope That Helps
Gerald Stanley MCSD
 
Try using DoCmd.OpenForm in the Click method of the button
to open the subForm.

Thanks. I got it by using the wizard to construct the button. I'm
disecting it from there to better understand it.

Carl
 
Back
Top