¿ Can somebody helpme with this ?
1.- I want to make an OCX control that appear that the ImageList control ( invisible and only the icon ).

2.- And, I want to access to the controls in the form that i put the control. I use a function like this

sub FormControls(frm as form)
dim ctl as control

for each ctl in form
msgbox ctl.name
next ctl
end sub

by examble, but i want the control recoignize the control without passing a form like a sub argument.

Thanks.