谢谢!

解决方案 »

  1.   

    字符的话可以用ultraedit之类的修改
      

  2.   

    但XP界面好像只能在winxp系统下~~`
      

  3.   

    谢谢各位。exescope已经在用了,但好像只能将里面的窗口大小,按钮排列更改一下。
    To jackie168(三箭齐发):
      只能在winxp下运行无所谓的,只要能改过来就好。请问,应该用哪个工具?
      

  4.   

    3j提示了一下,我了一下,要用.net,别的工具应该也可以
    用.net打开这个exe文件,右键-添加资源-自定义-输入-rt_manifest
    会添加一个101的条目,点击101把下面的xml复制进去,把101的属性改为1
    保存一下就ok了编辑一个xml文件,把程序名替换一下
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <assembly 
        xmlns="urn:schemas-microsoft-com:asm.v1" 
        manifestVersion="1.0">
        <assemblyIdentity 
            version="1.9.1234.0" 
            processorArchitecture="X86" 
            name="你的程序名"
            type="win32" />
        <description>With Windows XP Visual Styles.</description>
        <dependency>
            <dependentAssembly>
                <assemblyIdentity 
                    type="win32" 
                    name="Microsoft.Windows.Common-Controls" 
                    version="6.0.0.0" 
                    processorArchitecture="X86" 
                    publicKeyToken="6595b64144ccf1df" 
                    language="*" /> 
            </dependentAssembly> 
        </dependency> 
    </assembly>
      

  5.   

    谢谢,不过不好意思,应该用哪个.net啊?多谢!
      

  6.   

    Microsoft Visual Studio .NET
      

  7.   

    >>>3j提示了一下,我了一下,要用.net,别的工具应该也可以
    .net我没用过,以前用啥工具忘记了,打开你要修改的.exe,然后XP化,就行了~~
      

  8.   

    to  jinjazz(近身剪(充电中...))
     我照你的方法改了之后,执行文件运行时,出错:“不是有效的win32应用程序”
      

  9.   

    給你兩方法:
    方法一:
    PE Explorer V1.95
    這個軟件簡單的要命!按照提示一步步的就可以完成了,因為它就有個XP界面向導,按照向導的指引,你就是不會多少軟件知識也可以搞掂。但是並不是全部軟件可以支持的。
    方法二:
    將下面的東西另存為一個文本文件,文件名字為“你的應用程序的名字.exe.manifest”,並將此文件放與“你的應用程序的名字.exe”的同一個文件目錄下面!搞掂了,再次執行你的程序吧。
    /////////這行不要///////////
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <assembly
    xmlns="urn:schemas-microsoft-com:asm.v1"
    manifestVersion="1.0">
    <assemblyIdentity
    version="1.9.1234.0"
    processorArchitecture="X86"
    name="你的程序名"
    type="win32" />
    <description>With Windows XP Visual Styles.</description>
    <dependency>
    <dependentAssembly>
    <assemblyIdentity
    type="win32"
    name="Microsoft.Windows.Common-Controls"
    version="6.0.0.0"
    processorArchitecture="X86"
    publicKeyToken="6595b64144ccf1df"
    language="*" />
    </dependentAssembly>
    </dependency>
    </assembly>
    ////////////這行不要///////////
      

  10.   

    ---》还有图片也能改吗?PE Explorer V1.95也可以將圖片修改,關鍵是看你會不會使用。
      

  11.   

    多谢各位,我把xml中的type:“win32”改为“basicwin32”就可以了。但是界面的效果不是很理想。结贴了。