going from one form to another on specific tab

Ravenray

Registered User.
Local time
Today, 19:26
Joined
Nov 21, 2003
Messages
32
I have this code here


Private Sub FullName_DblClick(Cancel As Integer)
On Error GoTo Err_FullName_Click

Dim stDocName As String
Dim stLinkCriteria As String

stDocName = "frmMemberListMaint"

stLinkCriteria = "[ClientID]=" & Me.ClientID
DoCmd.OpenForm stDocName, , , stLinkCriteria

Exit_FullName_Click:
Exit Sub

Err_FullName_Click:
MsgBox Err.Number & "-" & Err.Description
Resume Exit_FullName_Click
End Sub

Now under frmMemberListMaint there's a couple of tabs. Is there a way for me to go to that specific tab?
 
wOo HoO! Thanx. Work great!
 

Users who are viewing this thread

Back
Top Bottom