Your soution works perfectly....
I was near but not close enough...
THANK YOU one more time!
"Leith Ross" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>
> Hello Sasa Stankovic,
>
> The easiest and quickest solution would be remove the Control Toolbox
> Option Buttons and replace them with the Forms Option Buttons. If you
> can't replace the buttons, here is how to check...
>
> Code:
> --------------------
>
> Sub CheckOptionButtons()
>
> Dim OleObj As Object
> Dim OptBtn As Object
>
> With ActiveSheet
> For Each OleObj In .OLEObjects
> If TypeName(OleObj.Object) = "OptionButton" Then
> Set OptBtn = OleObj.Object
> If OptBtn = True Then
> MsgBox OleObj.Name & " is Set."
> End If
> End If
> Next OleObj
> End With
>
> End Sub
>
> --------------------
>
> Sincerely,
> Leith Ross
>
>
> --
> Leith Ross
> ------------------------------------------------------------------------
> Leith Ross's Profile:
> http://www.thecodecage.com/forumz/member.php?userid=75
> View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=44968
>