I have an sstab, with 5 tabs.
i need to intercept if i have cliked on tab 5, or clicked on tab with by name PAGAMENTI?
click on sstab element and goto mycode
-
- PlatinumLounger
- Posts: 4535
- Joined: 26 Apr 2010, 17:36
click on sstab element and goto mycode
You do not have the required permissions to view the files attached to this post.
-
- Administrator
- Posts: 79694
- Joined: 16 Jan 2010, 00:14
- Status: Microsoft MVP
- Location: Wageningen, The Netherlands
Re: click on sstab element and goto mycode
Code: Select all
Private Sub SSTab1_Click(PreviousTab As Integer)
If SSTab1.Tab = 5
Call mycode
End If
End Sub
Best wishes,
Hans
Hans
-
- PlatinumLounger
- Posts: 4535
- Joined: 26 Apr 2010, 17:36
Re: click on sstab element and goto mycode
Tks Bro.HansV wrote: ↑27 Nov 2024, 18:43Code: Select all
Private Sub SSTab1_Click(PreviousTab As Integer) If SSTab1.Tab = 5 Call mycode End If End Sub
First experiene with sstab