Dim ctlCurr As Control
For Each ctlCurr In Me.Controls
If TypeOf ctlCurr Is ToggleButton
ctlCurr.Caption = ...
End If
Next ctlCurr
Of course, if you've only got a few, it's probably easier to simply refer to
them by name.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no e-mails, please!)
>I have a situation where I need to reference multiple toggle buttons by
> reference. I need to create a loop where each toggle button object is
[quoted text clipped - 12 lines]
>
> Eddie
Eddie's Bakery and Cafe' - 01 Mar 2005 02:25 GMT
Thanks Douglas,
I will give this a try
> Dim ctlCurr As Control
>
[quoted text clipped - 23 lines]
> >
> > Eddie