Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

.NET web events not occuring? 1

Status
Not open for further replies.

jw970170

Programmer
Aug 8, 2005
38
Hello,

I am trying to use a tabstrip control but I am having a problem with events.

I've added the tabstrip, and double clicking on it creates the subroutine

Private Sub TabStrip_SelectedIndexChange(ByVal sender As System.Object, ByVal e As System.EventArgs)

However, whenever I change the tab, this subroutine is not being called. What am I doing wrong?
 
I have bever used a tab strip. Try to wire it up.
Private Sub TabStrip_SelectedIndexChange(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TabStrip.SelectedIndexChange
Marty
 
That was it! Thanks for your help. I'm pretty new to this .net stuff
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top