Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Change Control Color
Message
 
To
22/05/2003 13:29:23
General information
Forum:
ASP.NET
Category:
Forms
Miscellaneous
Thread ID:
00791338
Message ID:
00791781
Views:
17
Try this:
private void tabControl1_MouseEnter(object sender, System.EventArgs e)
		{
			tabControl1.SelectedTab.ForeColor = Color.Red; 
			tabControl1.SelectedTab.BackColor = Color.White; 
		}

private void tabControl1_MouseLeave(object sender, System.EventArgs e)
		{
			tabControl1.SelectedTab.ForeColor = Color.Green; 
			tabControl1.SelectedTab.BackColor = Color.Silver; 
		}
>Thaks for replay jayes patel
>
>I have tried with button it work , but did't work with tabpages.
- Jayesh
Previous
Reply
Map
View

Click here to load this message in the networking platform