VB.net - radiobuttons

Soldato
Joined
8 Oct 2005
Posts
4,184
Location
Midlands, UK
Hi,

Just a quick one for vb.net 2005. I have 4 radiobuttons in a panel. At the load event i dont want to have any of these selected. I have tried the following in the form_load to no avail:

Code:
		rdbsds.Checked = False
		rdbBdd.Checked = False
		rdbsdsds.Checked = False
		rdbdsdsds.Checked = False

Any ideas?
 
Last edited:
eriedor said:
The whole point of radio buttons is to always have 1 and only 1 selection selected at a time, sounds like what you want is check boxes

Yer im aware of that. But im told i need to have no of the option radio buttons selected. This is why im a tad confused.
 
Last edited:
Telescopi said:
You've probably been told based on VB6 behaviour, where what you have been asked would be easy (indeed default).

VB6 has never been mentioned.......

Why is it that seemingly easy things like this always turn out to be the things that annoy me the most :(

EDIT: actually the most annoying part is that i have completed the main part of this excercise and am still struggling to get this to work. :(
 
Last edited:
Back
Top Bottom