4

古いアプリケーションを使用していますが、多くのコードを変更せずにアプリケーションを手早く改良する方法はありますか? MFCエミュレータ?

4

2 に答える 2

0
1)Create a file <yourapplication><.exe>.manifest

2)Paste the file in the same path as your exe 

3)Paste the following content inside the manifest file

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
    version=""
    processorArchitecture=""
    name=""
    type=""
/>
<description></description>
<dependency>
    <dependentAssembly>
        <assemblyIdentity
            type="win32"
            name="Microsoft.MSXML2"
            version=""
            processorArchitecture="X86"
            publicKeyToken=""
            language="*"
        />
    </dependentAssembly>
</dependency>
</assembly>

4) Launch the exe.. 
于 2013-01-22T13:24:23.983 に答える
0

あいまいな質問を読んだだけでは、何をしているふりをしているのかを理解するのは困難です。

より最新の Visual Studio バージョンを使用する場合は、そのバージョンで開くだけで、ソリューション変換ウィザードが起動します。

目を楽しませたい場合は、Feature Pack をご覧ください。ドッキング可能なペイン、リボン バーなどの優れたコントロールがあり、アプリケーションをよりモダンに見せることができます。

フォームの背景を変更したい場合は、WM_CTL_COLOR と OnCtlColor のドキュメントを読み、デフォルトの動作をオーバーライドしてください。

そして、このリストは無限に続く可能性があります...

于 2014-07-14T23:56:15.390 に答える