vote up 1 vote down star

I created an application in VS 2008 Express as an MFC app just to take advantage of the easy GUI creation. I might re-do this app in pure win32 since no other MFC classes are used (just a button and a text box, the button fires off the main program, all win32). My only question that determines wether I stay in MFC or port it over to pure win32 is this:

How difficult is it to deploy and MFC app? What do I need to do (In vs 2008) to make sure it works on another machine?

flag

77% accept rate
The Express edition doesn't include MFC. Are you perhaps talking about Windows Forms? – nobugz Feb 9 at 19:08
I created an MFC application... Maybe I am not on Express after all. ?? Can't remember exactly and I'm not near the computer that has VS 2008 installed right now... – Zombies Feb 9 at 19:14

2 Answers

vote up 8 vote down check

Statically link MFC and it's just another .exe.
You can just give that to the user or create an installer with either the microsoft .msi tool or a regular setup.exe with something like innosetup.

Edit - the error message in your comment is about another dll that is part of a 3rd party library. You can't (easily) take a DLL and incorporate it into your app. the licensing may also require you to ship their DLL as a separate lib.

link|flag
How do I statically link? I looked in the project Properties -> Link but could not find anything. – Zombies Feb 9 at 1:34
somewhere in the linker options it says "use MFC in dynamic library" change this to select "use MFC in static library" – mgb Feb 9 at 3:22
Project Properties -> Configuration Properties -> General -> Use of MFC = "Use MFC in a Static Library" – demoncodemonkey Feb 9 at 17:02
Thanks dcm - I was on a Linux machine and posting from memory – mgb Feb 9 at 18:28
Hm, I did all of this buy I am getting: The Application failed to start because cv110.dll was not found. Re-Installing the applicaiton may fix this problem. I simply took the exe and attempted to run it on another machine... – Zombies Feb 9 at 19:15
show 2 more comments
vote up 0 vote down

You can use Visual Studio Merge modules. These can be added while building the installer. Merge modules provide all the dlls, files required to run your application.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.