Click here to Skip to main content
15,883,990 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: [MFC] How to save three ini files as zip file? Pin
Thomas Daniels7-Nov-12 7:35
mentorThomas Daniels7-Nov-12 7:35 
QuestionWhy new Image failed? Pin
yu-jian7-Nov-12 4:06
yu-jian7-Nov-12 4:06 
AnswerRe: Why new Image failed? Pin
chaau7-Nov-12 12:12
chaau7-Nov-12 12:12 
AnswerRe: Why new Image failed? Pin
Santhosh G_7-Nov-12 12:59
Santhosh G_7-Nov-12 12:59 
GeneralRe: Why new Image failed? Pin
yu-jian15-Nov-12 16:41
yu-jian15-Nov-12 16:41 
QuestionDialogBox fail in XP Pin
William Engberts7-Nov-12 3:32
William Engberts7-Nov-12 3:32 
QuestionRe: DialogBox fail in XP Pin
CPallini7-Nov-12 10:06
mveCPallini7-Nov-12 10:06 
AnswerRe: DialogBox fail in XP Pin
chaau7-Nov-12 12:20
chaau7-Nov-12 12:20 
It is most likely the manifest. When I converted my projects to VS2010, it changed all my manifests to use urn:schemas-microsoft-com:asm.v2 in this line:
XML
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0>


You need to change it back to v1.

Basically, manifest should look similar to:
XML
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
    version="2.0.1.1"
    processorArchitecture="X86"
    name="myAwesomeApp"
    type="win32"
/>
<description>Awesome</description>
<dependency>
    <dependentAssembly>
        <assemblyIdentity
            type="win32"
            name="Microsoft.Windows.Common-Controls"
            version="6.0.0.0"
            processorArchitecture="X86"
            publicKeyToken="6595b64144ccf1df"
            language="*"
        />
    </dependentAssembly>
</dependency>
</assembly>


Also, please check if you still using the manifest loaded via RT_MANIFEST resource. You need to delete this from resource and use the project settings. VS2010 has a habit of assigning RT_MANIFEST to 2, making the program unusable under XP.

And of cause you need to check this linker option: MinimumRequiredVersion. It should be 5.00.
GeneralRe: DialogBox fail in XP Pin
William Engberts7-Nov-12 22:36
William Engberts7-Nov-12 22:36 
SuggestionRe: DialogBox fail in XP Pin
chaau7-Nov-12 22:59
chaau7-Nov-12 22:59 
GeneralRe: DialogBox fail in XP Pin
William Engberts7-Nov-12 23:30
William Engberts7-Nov-12 23:30 
QuestionRe: DialogBox fail in XP Pin
David Crow8-Nov-12 4:21
David Crow8-Nov-12 4:21 
AnswerRe: DialogBox fail in XP Pin
William Engberts8-Nov-12 5:00
William Engberts8-Nov-12 5:00 
QuestionAdo problem Pin
luckyty6-Nov-12 22:27
luckyty6-Nov-12 22:27 
Questionhow I can allow user draw curve using mouse Pin
Member 94819416-Nov-12 7:06
Member 94819416-Nov-12 7:06 
AnswerRe: how I can allow user draw curve using mouse Pin
Stephen Dycus6-Nov-12 7:58
professionalStephen Dycus6-Nov-12 7:58 
Questionhow to call a dll indipendent of path where it located in a system? Pin
litu kumar6-Nov-12 0:52
litu kumar6-Nov-12 0:52 
AnswerRe: how to call a dll indipendent of path where it located in a system? Pin
jschell6-Nov-12 9:13
jschell6-Nov-12 9:13 
GeneralRe: how to call a dll indipendent of path where it located in a system? Pin
litu kumar6-Nov-12 18:02
litu kumar6-Nov-12 18:02 
GeneralRe: how to call a dll indipendent of path where it located in a system? Pin
jschell7-Nov-12 7:51
jschell7-Nov-12 7:51 
QuestionVery happy with C++11 Pin
User 5838525-Nov-12 16:33
User 5838525-Nov-12 16:33 
AnswerRe: Very happy with C++11 Pin
Sarath C5-Nov-12 19:01
Sarath C5-Nov-12 19:01 
AnswerRe: Very happy with C++11 PinPopular
Richard MacCutchan5-Nov-12 22:25
mveRichard MacCutchan5-Nov-12 22:25 
GeneralRe: Very happy with C++11 Pin
Joe Woodbury6-Nov-12 7:32
professionalJoe Woodbury6-Nov-12 7:32 
GeneralRe: Very happy with C++11 Pin
User 5838526-Nov-12 8:50
User 5838526-Nov-12 8:50 

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.