bill said:
Ok, but the tab control has the on change event, not the
tabs themselves, how do i use the events to change
between 'tabs', thanks,
Bill
The TabPage click event fires when you click on a blank area of the page that is
already "on top", not when you click on the tabs to change pages.
The TabControl's Change event does fire when you change tab pages. If what you
want to do is dependent on which tab page was changed to, then you need to test
the Value property of the TabControl. This will return the index of the Tab
Page that was selected.
Select Case Me!TabControlName.Value
Case 0
'page one of the TabControl was selected.
Case 1
'page two of the TabControl was selected.
etc..