Hi
i have some form object which sit on top of each other. I have brought them in and out of view by grouping them using tags.
what i want to be able to do is select a bunch of items with a tag name and select them all (so i can move/format them).
i though something like ..
...would do it but i can;t find a select object method.
anyone?
Thanks
i have some form object which sit on top of each other. I have brought them in and out of view by grouping them using tags.
what i want to be able to do is select a bunch of items with a tag name and select them all (so i can move/format them).
i though something like ..
Code:
Dim ctl As Control
For Each ctl In Form_frm_selections.Controls
If ctl.Tag = "tag_prods" Then
ctl.[COLOR="Red"]select[/COLOR]
End If
Next
...would do it but i can;t find a select object method.
anyone?
Thanks