我用MFC写了一个程序框架,我想把这个框架做成一个Application Wizard,就像
MFC AppWizard[exe]一样?请问怎么做?

解决方案 »

  1.   

    打开VC,然后ctrl+N,选择Custom AppWizard,创建一个工程,然后选择自定义模式,点击finish。然后再自己定制一个工程的模式,设计完成后,编译,系统会自动以插件的形式添加到VC的工程中,成为你的定制向导!
      

  2.   

    For Visual C++ 6.0, place the .awx and the .hlp file in the following folder on your computer:
    C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Template For Visual C++ 5.0, place the .awx and the .hlp file in the following folder on your computer:
    C:\Program Files\DevStudio\SharedIDE\Template Open Visual C++ and create a new project. Migration DLL AppWizard should now be listed as a project type.
      

  3.   

    1.New->Project->Custom AppWizard
    2.把你的代码拷贝到程序里面去,然后编译,生成生成.awx和.hlp文件
    3.拷贝这2个文件到C:\Program Files\Microsoft Visual Studio\Common\MSDev98\Template然后重新打开vc就可以看到你的winzard了