I developed MFC Regular DLL "Static Linked" using vs2005. when compiled it as 32-bit DLL
I can load it using "LoadLibrary" from my machine or from any other machine.
but when compile it as 64-bit DLL I can only load it from my machine.
I review my code and found global object declared.
MyClass myObj;
when I comment this object..I can load DLL and use it from diffrent machine.but when any
global object found...I can't load my DLL from diffrenet machine.
anyone can help me?