Compiling .exe w/o dll's

cjohnson

Well-known member
Joined
Sep 21, 2006
Messages
63
Location
WV
Programming Experience
1-3
I write programs for use inside and outside of my department by users with very different skill levels. As such, I want to keep the applications as simple to execute as possible. I put these applications on a network. Because of the security settings, the user must copy the program to his/her computer to run. When dll's are necessary (i.e. Interop.Excel.dll), this causes a problem because most people will copy only the .exe. Then, the program won't even open, so I can't use a help file to tell them what they've done. Is there a way to compile the dll with the exe?
 
You should always deploy your application with ClickOnce or other installer.
 
Tried it and it worked great. I can even install the program from the network drive. Thanks again.
 
Back
Top