Hi, to make it work like a plug-in (with all advantages) you have to wrap your "com visible c# component" in a standard WIN32 dll library. That can be done in C/C++. You need the ADK for it.
That is the hard way...
If your component is COM visible, you can also use it directly from AFL by
creating it as an object.
like Steve wrote:
myobj = CreateObject("csharp.amlib1");
..
That is the easy way...
Y
