B
Barb Reinhardt
I have a document that has a bunch of option buttons created with the forms
toolbar. How do I access the name of the option button iand the "value"
(true/false) of the option button n VBA?
I have this so far and I'd like to get the OptionButton name somehow, but
haven't been able to get to it.
Dim myShape as InlineShape
For Each myShape In myDoc.InlineShapes
If myShape.OLEFormat.ProgID Like "*OptionButton*" Then
'Do something
End If
Next myShape
Thanks,
Barb Reinhardt
toolbar. How do I access the name of the option button iand the "value"
(true/false) of the option button n VBA?
I have this so far and I'd like to get the OptionButton name somehow, but
haven't been able to get to it.
Dim myShape as InlineShape
For Each myShape In myDoc.InlineShapes
If myShape.OLEFormat.ProgID Like "*OptionButton*" Then
'Do something
End If
Next myShape
Thanks,
Barb Reinhardt