In design view of the form, make sure the little button that has the magic wand is in the depressed position. Then select the OPTION Group button, which looks like a frame with XYZ at the top.
Click on it, and it will open the wizard. Then you can answer the questions as it goes and it will help you build the option group. The first thing up will be to put in the labels you want for each option, then it will ask you if you want one as DEFAULT, Then you can select what value each box will be, then you can either bind it to a field, or save it for later use.
Then it will let you choose the visual format and then ask you for the label caption for the option group.
After you have it on your form, you can select how you use it. I usually go into the name property (click on the border around the option buttons) and name it something like optMyOptionGroup. Don't bother with each button name. Then, let's say that you want to click a button and have it do something based on what button was selected. You can have code on the button that goes something like this:
Private Sub cmdMyButton_Click()
Select Case optMyOptionGroup
Case 1
Docmd.OpenReport "MyReport1", acNormal
Case 2
Docmd.OpenReport "MyOtherReport", acPreview
End Select
End Sub
Hope that helps.
BL
End Sub
[This message has been edited by boblarson (edited 04-22-2002).]