How to compile in a file....

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, to all...

I have a project that have 5 reference to com objects... How could generate an exe file that have all the dlls inside?

Thanks in advance.
Owatona.
 
Your .exe will not have the DLLs "inside". The DLLs should either be in the
same directory as the .exe (if they're not shared with other apps) or they
should be installed in a central location (such as \windows\system32).

If you want to distribute the DLLs with your application, then you need to
create an installer for it.

Pete

Owatona said:
Hi, to all...

I have a project that have 5 reference to com objects... How could
generate an exe file that have all the dlls inside?
 
Back
Top