W
Will Chapman
I have a tabcontrol with 3 tabpages. On page one
there is a button which starts a background process
that initiates activity that, when complete, fires an
event.
When the event fires I want to invoke a mouse tap
on another one of the tabpages so that it displays.
I have managed this (in C#) with:
tabPage3.BringToFront();
however, while this displays the content of tabPage3
the tab itself doesn't have focus (it stays with the original
tab). I've tried tabPage3.Focus() but that has no effect.
Any suggestions?
there is a button which starts a background process
that initiates activity that, when complete, fires an
event.
When the event fires I want to invoke a mouse tap
on another one of the tabpages so that it displays.
I have managed this (in C#) with:
tabPage3.BringToFront();
however, while this displays the content of tabPage3
the tab itself doesn't have focus (it stays with the original
tab). I've tried tabPage3.Focus() but that has no effect.
Any suggestions?