Hello,
I have a macro that creates a background image behind every textbox in a userform. The textbox is transparent so the image becomes like the background for the textbox.
the macro esentially goes like this:
Now I moved some of the boxes onto different frames.
I know I could do:
but I wanted to know if there was a way I could get it to loop through all of the frames and do it automatically.
Thanks!
-Ilya
I have a macro that creates a background image behind every textbox in a userform. The textbox is transparent so the image becomes like the background for the textbox.
the macro esentially goes like this:
Code:
Dim box As Control
For Each box In Me.Controls
'Code to create back image
Next
Now I moved some of the boxes onto different frames.
I know I could do:
Code:
For Each box in Me.Frame1.Controls
Thanks!
-Ilya