Hmmm.. I guess I'm too lazy to spend the needed time in browsing the the help files so here I am.

Stupid question I think, since I`ve done that millions of times in Access. But now in VB: I've succesfully created exclusive option buttons (2) on a form by creating them both in a frame.

To assign a value to these option buttons by code, in Access, all you had to do is give the frame a value (True or False), and the appropriate Option button would become clicked. In VB this just won't work.. what's the best way of doing this? I'm trying to avoid having 2 lines of code:

opt1.value = true
opt2.value = false

I'm sure you guys get the idea - thanks...