1

I am creating ActiveX control with visual c++ 6.

my control uses some DLLs, and I want to embed all those DLLs in the output DLL

how can I do That?

Mohammad Shaban
  • 176
  • 1
  • 16

1 Answers1

1

You should be aware that the security concerns in a runtime that old, on top of that the code the compiler generates will be insanely fat and slow.

This existing Stack Overflow Answer answers your question as well as I could - https://stackoverflow.com/a/3595965/6476520

Community
  • 1
  • 1
1stCLord
  • 860
  • 5
  • 14