Hello all,

Is it possible to loop all rectangle shapes that are on form? I did something like that with textboxes.
Code:
Dim ctrl As Control

For Each ctrl In Me.Controls
If TypeOf ctlr Is TextBox

Some code here

End If
Next