Sorry to be a pain but I was wondering if someone would be able to give me a few pointers on how to change the colour of a radio button when selected, deselected and hovered over. So far I've been using got focus, lost focus and mouse hover but I dont think thats quite right. My objective was to change the colour of radio boxes selected from different group boxes to enable the user to see what they have selected. Any help would be greatley appreciated.
Comments
something like
If RadioButton1.Checked = True Then RadioButton1.BackColor = Color.Aqua
Else RadioButton1.Checked = False then RadioButton1.BackColor = Color.Green
End If
http://www.onedevteam.com/