Click to See Complete Forum and Search --> : Radio Button Click event


avravinder
September 16th, 2005, 07:04 PM
Hi ,
VB.Net
i want the Click event of the radio button to fire only if the users mouse clicks . the the control gets focus because of tabing from a previous control i do not want the click event to fire. is there a property that i can set for this

ravinder

jmcilhinney
September 17th, 2005, 01:11 AM
There is no Click event unless the user clicks the mouse button, hence the name. The Enter and GotFocus events will be raised when the user tabs to a RadioButton but there is no Click event. Also note that unchecked RadioButtons do not receive focus via tabbing.