Click here to Skip to main content
15,921,660 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: show powerpoint slides in visual C++ 2010 form Pin
amir70021-Jun-12 22:38
amir70021-Jun-12 22:38 
GeneralRe: show powerpoint slides in visual C++ 2010 form Pin
_Flaviu22-Jun-12 6:30
_Flaviu22-Jun-12 6:30 
QuestionCan I create a dialog template for other dialog boxes? Pin
DeepT20-Jun-12 5:47
DeepT20-Jun-12 5:47 
AnswerRe: Can I create a dialog template for other dialog boxes? Pin
fat_boy20-Jun-12 6:31
fat_boy20-Jun-12 6:31 
AnswerRe: Can I create a dialog template for other dialog boxes? Pin
Albert Holguin20-Jun-12 7:04
professionalAlbert Holguin20-Jun-12 7:04 
GeneralRe: Can I create a dialog template for other dialog boxes? Pin
DeepT20-Jun-12 7:33
DeepT20-Jun-12 7:33 
GeneralRe: Can I create a dialog template for other dialog boxes? Pin
Albert Holguin20-Jun-12 8:33
professionalAlbert Holguin20-Jun-12 8:33 
AnswerRe: Can I create a dialog template for other dialog boxes? Pin
Rolf Kristensen20-Jun-12 9:00
Rolf Kristensen20-Jun-12 9:00 
AnswerRe: Can I create a dialog template for other dialog boxes? Pin
ThatsAlok20-Jun-12 20:18
ThatsAlok20-Jun-12 20:18 
QuestionA professional and rich-content toolkit for designing great UI Pin
m.salsal20-Jun-12 1:15
m.salsal20-Jun-12 1:15 
AnswerRe: A professional and rich-content toolkit for designing great UI Pin
Richard MacCutchan20-Jun-12 3:13
mveRichard MacCutchan20-Jun-12 3:13 
AnswerRe: A professional and rich-content toolkit for designing great UI Pin
Albert Holguin20-Jun-12 3:28
professionalAlbert Holguin20-Jun-12 3:28 
AnswerRe: A professional and rich-content toolkit for designing great UI Pin
Maximilien20-Jun-12 3:40
Maximilien20-Jun-12 3:40 
GeneralRe: A professional and rich-content toolkit for designing great UI Pin
Albert Holguin20-Jun-12 3:49
professionalAlbert Holguin20-Jun-12 3:49 
AnswerRe: A professional and rich-content toolkit for designing great UI Pin
fat_boy20-Jun-12 3:49
fat_boy20-Jun-12 3:49 
GeneralRe: A professional and rich-content toolkit for designing great UI Pin
Albert Holguin20-Jun-12 4:03
professionalAlbert Holguin20-Jun-12 4:03 
GeneralRe: A professional and rich-content toolkit for designing great UI Pin
fat_boy20-Jun-12 6:30
fat_boy20-Jun-12 6:30 
AnswerRe: A professional and rich-content toolkit for designing great UI Pin
Vaclav_20-Jun-12 4:22
Vaclav_20-Jun-12 4:22 
AnswerRe: A professional and rich-content toolkit for designing great UI Pin
bob1697220-Jun-12 10:34
bob1697220-Jun-12 10:34 
QuestionMfc100d.dll Not Found Pin
AmbiguousName19-Jun-12 18:13
AmbiguousName19-Jun-12 18:13 
AnswerRe: Mfc100d.dll Not Found Pin
Richard MacCutchan19-Jun-12 20:59
mveRichard MacCutchan19-Jun-12 20:59 
AnswerRe: Mfc100d.dll Not Found Pin
Sivaraman Dhamodharan19-Jun-12 22:39
Sivaraman Dhamodharan19-Jun-12 22:39 
GeneralRe: Mfc100d.dll Not Found Pin
ThatsAlok20-Jun-12 20:20
ThatsAlok20-Jun-12 20:20 
GeneralRe: Mfc100d.dll Not Found Pin
Sivaraman Dhamodharan21-Jun-12 1:23
Sivaraman Dhamodharan21-Jun-12 1:23 
AnswerRe: Mfc100d.dll Not Found Pin
Albert Holguin20-Jun-12 3:23
professionalAlbert Holguin20-Jun-12 3:23 
In addition to what Richard said (build in release mode), you have a few alternatives for distributing MFC with your application (if there's a dependency there):

0. Use MFC as a DLL and distribute using Microsoft's redistributable package installer[^].
1. Built in the MFC as a static library (will make your build larger but you'll only have to distribute your exe).
2. Distribute the DLL yourself using an installer such as InstallShield (or something similar).
3. If you don't use MFC at all in your project, disable the dependency.

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.