|
tianmian
初级用户
积分 100
发帖 41
注册 2007-12-6
状态 离线
|
『第
31 楼』:
那要格式化输出用什么函数你看我这样一段程序:(在sail3000工程中对sail2000.cpp的改动)
if( !::InitSystem(argc,argv))
{
::CloseSystem();
::printf("\nSystem Source Not Enough!");
return(0);
}
ChPrintf(40,0, WHITE, DARKGRAY, 1, 1,
"*********温馨提示********* "
"用户名--- super 密 码--- ( 空 )");
printf("OK!\n");//存dos下应该能用吧
::CloseSystem();
printf("before return\n");
return(1);
其他的只有一些必要的框架,然而这个函数运行后只屏幕输出before return ????
|
|
2008-1-16 20:08 |
|
|
firstsail
高级用户
积分 668
发帖 295
注册 2005-7-26 来自 广东深圳
状态 离线
|
『第
32 楼』:
运行Sail3000后,您可以在“上位机”Ping一下“下位机”的IP地址,看一看有没有反应。
ping 169.254.82.133
|
|
2008-1-16 20:16 |
|
|
firstsail
高级用户
积分 668
发帖 295
注册 2005-7-26 来自 广东深圳
状态 离线
|
『第
33 楼』:
Quote: | 那要格式化输出用什么函数你看我这样一段程序:(在sail3000工程中对sail2000.cpp的改动)
if( !::InitSystem(argc,argv))
{
::CloseSystem();
::printf("\nSystem Source Not Enough!");
return(0);
}
ChPrintf(40,0, WHITE, DARKGRAY, 1, 1,
"*********温馨提示********* "
"用户名--- super 密 码--- ( 空 )");
printf("OK!\n");//存dos下应该能用吧
::CloseSystem();
printf("before return\n");
return(1);
其他的只有一些必要的框架,然而这个函数运行后只屏幕输出before return ???? |
|
这是因为程序执行太快了,您可以加入“getch()”,或者AfxMessageBox()函数,停顿一个
if( !::InitSystem(argc,argv))
{
::CloseSystem();
::printf("\nSystem Source Not Enough!");
return(0);
}
ChPrintf(40,0, WHITE, DARKGRAY, 1, 1,
"*********温馨提示********* "
"用户名--- super 密 码--- ( 空 )");
printf("OK!\n");//存dos下应该能用吧
AfxMessageBox("调试", "中华人民共和国万岁", MB_OK); // 加入这一行
::CloseSystem();
printf("before return\n");
return(1);
========================================
在网站下载的Sail3000,已经配置成256色,如果要用printf函数,请使用16色,
可修改config.sys的display段
[Display]
device = 0
mode = 0
|
|
2008-1-16 20:22 |
|
|
firstsail
高级用户
积分 668
发帖 295
注册 2005-7-26 来自 广东深圳
状态 离线
|
『第
34 楼』:
我要下班吃饭了,明天9:00上班,GoodByte!
|
|
2008-1-16 20:23 |
|
|
tianmian
初级用户
积分 100
发帖 41
注册 2007-12-6
状态 离线
|
|
2008-1-16 20:32 |
|
|