Hi,
How can i loop through all the controls that are held in a picturebox?
Ta
Printable View
Hi,
How can i loop through all the controls that are held in a picturebox?
Ta
Hi
Note that you will also get the container itself ie picture1 or whateverCode:
Dim Ctrl As Control
For Each Ctrl In Picture1.Container
MsgBox Ctrl.Name
Next
HTH
G
thanks