I don't know of any automatic way to generate a C# wrapper for a Win32 DLL but if you want learn about wrapping Win32 API calls take a look at http://pinvoke.net for some nice examples.
Hi Ivan... So if I have a C++ ATL COM component called JAL.dll with a
class
SQL2Table, open Visual Studio and go to Project --> Add Reference -->
COM
and select JAL.dll. To call the dll just do
using JALLib;
blah blah blah
SQL2Table myCOM= new SQL2Table();
blah blah