VB.Net 2005 Radio Buttons require double-click

susettem

New member
Joined
Aug 23, 2006
Messages
2
Location
Seattle
Programming Experience
10+
I have a simple Windows form as a part of a large commerical application that was developed using VB.Net 2005. The form includes radio buttons to allow the users to select options for page size. Problem is, VB.Net 2005 seems to default to a double click for those buttons, which drives the users crazy because if they are slow clicking all of the buttons are "deselected". They want the buttons to work with a single click. Any suggestions on how I make those 2005 radio buttons work with a single, rather than a double, click. Thanks for any help on this.
 
If you added code to the DoubleClick event handler, instead of the Click,or maybe CheckChanged event handlers, you would experience what you describe.

Radio Buttons do not do anything by default, other than chenge the selection when they are single clicked. If you do not add any event handlers then a group of radio buttons will do nothing at all. If you have a complaint about the programs behaviour when the button is interacted with, it can only be a result of the behaviour the developer(you?) has chosen to implement
 
Here's what the problem was. Someone had set up the Application settings checked property with a field to save the "state". That was causing the problem. Once I removed that, the problem went away. Nothing in the code for the events -- it was the Application settings for the radio button control itself. Thanks for the suggestions.
 
Back
Top