How do I access a Page on a tabbed form?

  • Thread starter Thread starter mlkiser via AccessMonster.com
  • Start date Start date
M

mlkiser via AccessMonster.com

First time working with Pages. I am forced to try and edit someone else's
project and am confused on how this works. We have the main form called "Eval
Fm." There are two tabs, "Main" and "Page202". They are of type Page when I
look at their properties. When someone enters a value on page Page202, I need
to access a value on the Main tab. How do I do that? I tried using variants
of:

Forms![Eval Fm]![Main]!Form.txtItem

But that doesn't work. I get an error stating that "Object doesn't support
this property or method." Obviously I am boneing this up. Any help greatly
appreciated.
 
The fact that the text box is on a page of a tab control is irrelevant: you
simply refer to the text box:

Forms![Eval Fm]!txtItem
 
Geez, color me stupid. Thank you. Needless to say that worked just fine.
The fact that the text box is on a page of a tab control is irrelevant: you
simply refer to the text box:

Forms![Eval Fm]!txtItem
First time working with Pages. I am forced to try and edit someone else's
project and am confused on how this works. We have the main form called
[quoted text clipped - 12 lines]
this property or method." Obviously I am boneing this up. Any help greatly
appreciated.
 
Back
Top