|
My C# program is referring a VB6.0-written ActiveX control, through the xHost wrapper (Through a hand-written class which inherits axHost, to be exact).
The problem is, the VB code "UserControl.Parent" (which relates to the parent of the control, hence to the C# code), expecting a Control, simply won't work.
I'm not even sure who that 'parent' is in C#. is it my written class? axHost? is it the form which contains them?
What to do?
|