J.
J.Nagarajan
Syncfusion Team
October 5, 2007 11:36 PM UTC
Hi Christoph ,
Thanks for your interest in Syncfusion products.
You can disable the selection of tabs by clicking on the tab. You have to handle the SelectedIndexChanging event of the TabControlAdv. Please refer to the following code snippet
[C#]
private void tabControlAdv1_SelectedIndexChanging(object sender, Syncfusion.Windows.Forms.Tools.SelectedIndexChangingEventArgs args)
{
args.Cancel = true;
}
Please use this code and let me know if this helps
Regards,
Nagaraj
CG
Christoph Gasser
October 14, 2007 09:32 AM UTC
Thank you very much. It' working fine.