Moved Form Data to Tab Control

  • Thread starter Thread starter scott04
  • Start date Start date
S

scott04

Hi All,

I recently moved all of my form fields to a tabbed control. The reason i
did this was to utilize a subform. My main problem now is that none of my
code is working on the form now. Can some explain why none of the old code
works now and how i can go about getting it to work. Thanks
 
You've likely made your form into a subform. Let's say your tab control is
housed on frmTab, your old form was frmMyForm. Your old code likely
referenced a control on your old form as Forms!frmMyform!MyControl. To
reference that control now you have to use Forms!frmTab!frmMyform!MyControl.

Regards

Kevin
 
Thank you for that information...i simply strarted from scratch with the
form...created the tabs and then migrated my code...now everything seems to
work...thank you
 
Back
Top