告诉我你的EMAIL,我发一个范例给你

解决方案 »

  1.   

    菜单:   Project -> Add to Project -> Components and controls
    选择 Visual C++ Components选择 Splash screen确定
      

  2.   

    非常感谢chenhq(chenhq),我的EMAIL是[email protected]
      

  3.   

    project->Add to project->components and controls gallery->Visual C++ components->GUID generator
      

  4.   

    1. 在CMainFrame::OnCreate()中创建启动屏幕。然后,设置位图、文本以及其他内容,并调用 CreateThread()。线程将自动创建和删除。int CMainFrame::OnCreate(LPCREATESTRUCT lpCreateStruct)
    {
    CSplashThread *pThread = new CSplashThread();
    pThread->AddStringHeaderMain("My Application");
    // .. some other settings
    pThread->SetTimerDuration(5000); // 5 seconds
    pThread->CreateThread();
    if (CMDIFrameWnd::OnCreate(lpCreateStruct) == -1)
    return -1;
    // ...
    }
    2. 如果需要自己特定的特征,可以创建自己的线程类完成。
      

  5.   

    可以用VC自带的Splash Screen,来完成
    在添加工程里选择,Components and Controls,里选择
      

  6.   

    可以用VC自带的Splash Screen,来完成
    在添加工程里选择,Components and Controls,里选择
      

  7.   

    sorry,up error:
    project->Add to project->components and controls gallery->Visual C++ components->Splash screen