I Use this code to create atps in TabControl
how Can I Change the tab Color in Tab ControlCode:For r = 0 To 10
TabControl1.TabPages.Add(r , "New Tab")
Next r
Printable View
I Use this code to create atps in TabControl
how Can I Change the tab Color in Tab ControlCode:For r = 0 To 10
TabControl1.TabPages.Add(r , "New Tab")
Next r
It's not straight-forward. There's no property for that. You need to owner-draw the TabControl.
http://www.vb-helper.com/howto_net_ownerdraw_tab.html
thank you mr jmcilhinney