Let me take a look at that. The tab control event procedure looks like this:
Private Sub TabCtlCommodities_Change()
Dim stBatDocName As String
Dim stGenDocName As String
Select Case TabCtlCommodities
Case 0 'First Page
'Code for Page 1
stBatDocName = "qryZipToolTabControlBattery"
DoCmd.OpenQuery stBatDocName, acNormal, acEdit
Case 1 'Second page
'Code for Page 2
stGenDocName = "qryZipToolTabControlBattery"
DoCmd.OpenQuery stGenDocName, acNormal, acEdit
Case 2 'Third page
'Code for Page 3
End Select
End Sub
I have only referenced a query for the first and second tab until I can verify that the second tab is working.
Thanks,
Doc