请教如何在对话框显示之后让它自动弹出新的窗口并在5秒后自动消失????
不需要点任何按钮!!!
在VC6.0时代,可以通过组件为工程加入SplashScreen,具体方法是通过IDE中的菜单Project->Add to Project->Components and Controls,就可以从Visual C++ Components中选择Splash Screen这个组件插入工程。
http://www.cnblogs.com/luoshupeng/archive/2011/09/16/2178449.html
http://blog.sina.com.cn/s/blog_72ed42d40100vtkc.html
http://blog.csdn.net/sunnyloves/article/details/5576007
使用 定时器SetTimer实现吧
设置定时器后,跳出对话框,然后定时器到时间后,关闭这个对应的对话框
这个可以设置定时器,在定时器中弹出所需要的对话框,到时间关闭弹出框。。
我试了,在view的OnInitialUpdate末尾,效果还行。