0

I have a Windows Media Player with my application. And when I debug, it gives me some other dll files with the program, and it would be a pain in the butt to carry those files around with me. How would I get rid of these but keep my Windows Media Player implemented to the program? Is their a way I can add this to the project files or something? If not does anyone know any other good media players?

MPelletier
  • 16,256
  • 15
  • 86
  • 137
lab12
  • 6,400
  • 21
  • 68
  • 106
  • you need to provide us more information. Whats the name of the DLL's? What is the name of your media player ? Is it Microsoft Windows Media Player ? – Andrew Keith Oct 23 '09 at 00:37

1 Answers1

1

I think what you're trying to say is that you want to compile your external DLL's into your executable so you can deliver one .exe file. Unfortunately this is not something easily done.

I found this post: http://www.developerfusion.com/code/4504/merge-an-exe-and-a-dll-into-one-exe/ where you have to use the program ILMerge to do it.

Daniel T.
  • 37,212
  • 36
  • 139
  • 206
  • The steps their are really complicated! Can you show me what I have to change, and what I don't? – lab12 Oct 23 '09 at 01:18