I'm trying to muddle my way through making this ActiveX. I'm using an ActiveX control (which I know works) to compare against any issues that arise.

---------------------

I was receiving a number of duplicate linker errors caused by my imported lib file and MFC standard libraries.

I set the option:

Ignore All Default Libraries.

I'm now ONLY getting link errors of:

NAQX.def : error LNK2001: unresolved external symbol DllCanUnloadNow
NAQX.def : error LNK2001: unresolved external symbol DllGetClassObject

----------------------

When setting "Ignore All Default Libraries" in my ActiveX control,
I get the same error even though no imported lib file is included.

QUESTIONS:

1. Besides MSDN is there any book that does a better explanation of what's going on behind the scene when you set the various linker options??

2. If I leave the option "Ignore All Default Libraries" checked,
is there a way to resolve the above LNK errors. BTW, the only place DllCanUnloadNow and DllGetClassObject show up is in the *.def file.


Thanks
David