View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.misc
keithl816
 
Posts: n/a
Default toggle button text color


I figured it out.

Thanks


Code:
--------------------

With Me.ToggleButton1
If .Value = False Then
.ForeColor = &H0
Else
.ForeColor = &HFF&
End If
End With

--------------------



Larry


--
keithl816
------------------------------------------------------------------------
keithl816's Profile: http://www.excelforum.com/member.php...o&userid=21287
View this thread: http://www.excelforum.com/showthread...hreadid=393822