Hyperlink to tabbed form..

MackMan

Registered User.
Local time
Today, 04:47
Joined
Nov 25, 2014
Messages
174
I've set hyperlinks to a couple of forms using the hyperlink address in properties. All works fine, and I've done it this way because the cursor changes to pointy hand when hovering over.

However, I need to navigate to a tabbed form in a main form.

Is there a way of doing this? I've been searching all sorts, and the most probable is to concatenate the destination?

description##Page1#page2... or something like that?

Is this correct?

What ever I've tried doesn't work, this includes ...

adding the main form destination to Hyperlink Address, and tabbed form in the SubAddress (Can't find main form)

Using the hyperlink builder. (Can't find anything)

Objects in this database (Only one form)

Google offers plenty of ways to do everything else but this.:mad:

As always.. appreciate your help.
 
Something like: TabCtl0.Pages.Item(0).SetFocus
 
Thanks guys. As always...

But I've reverted back to VBA to setfocus to the page in question.

Code:
Private Sub lblSearch_Click()
DoCmd.OpenForm "MyPage"
Forms!MyPage!TabbedForm.SetFocus
End Sub
Sad thing is, to keep consistency - I've lost the pointy hand.
 

Users who are viewing this thread

Back
Top Bottom