AD
Administrator
Syncfusion Team
July 23, 2004 07:30 PM UTC
Hi,
Thanks for bringing this to our attention. I have tested for this issue and could observe the above mentioned behavior here. I have consulted the development team in this regard, and will update you as soon as I have more information available. We appreciate your feedback, and thanks for choosing Syncfusion.
Regards,
Guru Patwal
Syncfusion, Inc.
AD
Administrator
Syncfusion Team
July 26, 2004 09:15 PM UTC
Hi,
One approach here would be to handle the TabControlAdv''s SelectedIndexChanging event as shown in the code snippet below :
private void tabControlAdv1_SelectedIndexChanging(object sender, Syncfusion.Windows.Forms.Tools.SelectedIndexChangingEventArgs args)
{
if (Control.MouseButtons == MouseButtons.Right)
{
// do nothing
}
else if (Control.MouseButtons == MouseButtons.Left)
{
// do nothing
}
else if (Control.MouseButtons == MouseButtons.Middle)
{
// do nothing
}
else
{
args.Cancel = true;
}
}
Please let me know if this works for you. We appreciate your interest in Syncfusion products.
Regards,
Guru Patwal
Syncfusion, Inc.