I have a form with an unbound text box that is used to get data for multiple sub forms. Due to the limitations of the forms height and width I really need a second form but rather than the user having to open the second form and then having to type their name in the search box again i want the button to do it all for them. I have code on the button to easily open a new form from within a current form "DoCmd.OpenForm "SplashPageDesignerPg2""
I can easily move text from one unbound text box to another within the same form using "Me.[Text146] = Me.[Enter Designer Name]". However trying to copy and paste the text from one unbound text form to another on a completely different form is where i am getting stuck.
I have tried "SplashPageDesignerPg2!Me.[Enter Designer Name] = Me.[Enter Designer Name]" but i get an error. The form open is called SplashPageDesignerPg1, the button then opens form SplashPageDesignerPg2, the unbound text fields on both forms are called 'Enter Designer Name' i am hoping that won't cause an issue being the same in both forms?
I want whatever the user has added to the unbound text field of SplashPageDesignerPg1 to then copy and paste into the same field of the SplashPageDesignerPg2 form after it's opened.
Any help with this would be much appreciated.