我在我的程序里加载了vc自带的启动界面,
工程-->添加工程--->componets and controls...-->visual componets-->splash
运行我的程序,可是什么效果也看不到!请高手指点迷经.急!!!!!

解决方案 »

  1.   

    to ->: kingcom_xu(刀是用来杀人的!) 不是对话框的,使SDI的
      

  2.   

    我用向导生成了一个最简单的SDI ,加入后也不行.
      

  3.   

    可能是你的Splash 控件有问题了
      

  4.   

    在InitInstance()中添加
    CSplashWnd::EnableSplashScreen(cmdInfo.m_bShowSplash);
    // Dispatch commands specified on the command line
    if (!ProcessShellCommand(cmdInfo))
    return FALSE;

    // The one and only window has been initialized, so show and update it.
    m_pMainWnd->ShowWindow(SW_HIDE);这是
    void CSplashWnd::HideSplashScreen()
    {
    // Destroy the window, and update the mainframe.
    DestroyWindow();
    AfxGetMainWnd()->ShowWindow(SW_SHOW);
    AfxGetMainWnd()->UpdateWindow();
    }
      

  5.   

    Why not program a Splash window yourself.