Clear a tab contents when i switch tabs
-
I have a form in which i an using tab control. There are three tabs and in each tab there are textboxes. What i want to achieve is that when i switch from tab 1 to tab 2. All the textboxes of tab 1 should be cleared. Is it possible??? I am using Visual studio 2013, .NET 4.5, C#
-
I have a form in which i an using tab control. There are three tabs and in each tab there are textboxes. What i want to achieve is that when i switch from tab 1 to tab 2. All the textboxes of tab 1 should be cleared. Is it possible??? I am using Visual studio 2013, .NET 4.5, C#
Check the active index of tab on tab click and set the text box blank.
-
Check the active index of tab on tab click and set the text box blank.
Thnx... I did consider your suggestion and used tab Deselecting event.... Thnx again...