先在模块首段声明:
如果是64位Office,则声明:
然后再在某个Sub或Function中加入:
有。
以时间作为暂停条件,下面代码表示暂停1秒:
pt = 1: st = Timer
Do While Timer <st + pt
DoEvents
Loop
'下一条语句......
扩展资料:注意事项
想要暂停的地方加上 system("pause")就可以使 C/C++ 程序暂停。不过,这个办法奏效的前提是系统中必须存在 pause 这个命令。此外,还需要包含标准头文件 stdlib.h(对于 C)或者 cstdlib(对于 C++)。例如: .
功能: 演示如何使用 system("pause")暂停
#include <stdio.h>
#include <stdlib.h>!
int main(void)
{
printf("I need a pause here.\n")
system("pause")
printf("And here too.\n")
system("pause")。
return 0
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)