option group?

S

stripes

Well,
i'm trying to allow the option group selected display a text field to allow
information to be typed in. I need some help on how to go about it.

Thanks
 
A

Arvin Meyer [MVP]

The values in an Option Group are Integers and they are determined at design
time, not run time. You could make a textbox visible in the AfterUpdate
event of the OptionGroup. (aircode):

Sub grpChoose_AfterUpdate()

Select Case grpChoose
Case Is 1, 2, 3
Me.txtWhatever.Visible = True
Case Is 4
Me.txtWhatever.Visible = False
Case Else
MsgBox Err.Number & ": " & Err.Description
End Select

End Sub
 
Top