Hi,
I'm using WinForms controls in IE. Something similar to this:
var MyControl = new ActiveXObject("MyComponent.MyControl")
and I want to be able to use prototype feature for MyControl.:
MyControl.prototype.newFunc = function(){alert('hi there');}
Is it possible at all? I thought about System.Runtime.InteropServices.Expando, but I can't find any comprehensive documentation about it.
Many Thanks, Paul.