Sub Form problem

AndyShuter

Registered User.
Local time
Today, 20:34
Joined
Mar 3, 2003
Messages
151
I am trying to manipulate a tab on a subform.

If I place a command button on th the actual subform itself it works by using the following code

Me.Previous_Address.Visible = True

However, I need to perform the same function from another form but am having no joy!

I have made other things work (for example - Me.Child855!Text1045 = "1234" but cannot seem to find away to manipulate the tab

Any suggestions would be greatly appreciated

Andy
 
Tab

Try something like this:

Forms![Mainform]![subform]![Control].Visible = true
 
Thanks again!!

Worked a treat too!!!
 

Users who are viewing this thread

Back
Top Bottom