Hi,
Every time I add code to a tab in a SSTAB, it automatically adds it to all other tabs on the SSTAB control. I need different code to be added to individual tabs. Can someone provide me with an example how I can get around this?
Thanks
Si
Printable View
Hi,
Every time I add code to a tab in a SSTAB, it automatically adds it to all other tabs on the SSTAB control. I need different code to be added to individual tabs. Can someone provide me with an example how I can get around this?
Thanks
Si
In the click event of the sstab you can place a logical condition that determines the currently selected tab.
Code:Private Sub SSTab1_Click(PreviousTab As Integer)
Select Case SSTab1.Tab
Case 1
Case 2
End Select
End Sub