I have a non-visual component which manages other visual controls.
I need to have a reference to the form that the component is operating on, but i don\'t know how
Try This ....
private Form GetParentForm(Control parent) { if (parent is Form) return parent as Form; return parent.FindForm(); }
Call GetParentForm(this.Parent) from component
GetParentForm(this.Parent)