Diff. between VB6 Control Type and .Net Control Type
Hi,
In my VB6 application i am having a function which returns of type Control as follows,
Private Function MyFunction(param1 As String, param2 As MyType) As Control
Now Inside this funtion I am calling .Net fuction, this .Net function returns of type Control (.Net), when i am trying to assign the .Net Control to the VB6 control it says type mismatch.
MyFunction = ineropObj.GetNetObj();
Is that correct? any solution?
Regards,
Benin.

