Transfer info from textbox in main form to textbox in subform

Alvin85

Registered User.
Local time
Tomorrow, 02:41
Joined
Jul 7, 2018
Messages
17
I have 2 forms namely PrecedencePage and OverviewPage. I have 1 textbox named txt_fine and 1 button named btn_view in PrecedencePage. I have a textbox name txtView in OverviewPage. The idea is for the txtview in OverviewPage to see what user had key in previously in PrecedencePage's txt_fine.*

I tried the following coding but it state run time error 2465: miscrosoft access cant find the field 'overviewpage' referred to in your expression.

Form("OverviewPage").txtView.value = me.txt_fine.value

May i know where is the mistake and how to correct it?
 
Thank you :) on the same note, is there a way to do it without having the need of the overview page to be open?
 
You wouldn't be able to fill in a control on a form that is not open.

Are you trying to do something else?
 
No i not. I m just curious if there is. Thank you:)
 

Users who are viewing this thread

Back
Top Bottom