Hi there,
I have a code like the following:
private void tabPage_Validating(object sender, CancelEventArgs e)
{
e.Cancel = !CheckTabPage();
}I can cancel the event and it stays at the tabpage, but there is a datagridview on the tabpage, which will not fire the cellClick-Event (of the datagridview) anymore after this Cancel. Before Canceling the Validating-Event of the tabPage it works fine.
I hope someone has an idea.
Greetings
WhippyBaer