When I place TabStrip1 on my form and add more tabs to it, how do I distinguish between their click events in code. They are all TabStrip1_Click()
Printable View
When I place TabStrip1 on my form and add more tabs to it, how do I distinguish between their click events in code. They are all TabStrip1_Click()
hmm, Im not sure if this works w. tab's but maybee you can do this the same as an array.
Select Case (index)
case 0
your code
case 1
your code
case 2
your code
end select
That didn't fix it but it helped lead me to my solution.
Thanks a Bunch
JO