首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

急求:怎么实现每隔0.5秒闪一次Memo中的数据

2012-02-14 
急求:如何实现每隔0.5秒闪一次Memo中的数据?请问Memo1- Text 3 要让Memo1中的"3'不断的闪现,用Timer控

急求:如何实现每隔0.5秒闪一次Memo中的数据?
请问Memo1-> Text= "3 "
要让Memo1中的"3'不断的闪现,用Timer控件如何做?
就是每隔0.5秒输出一次,就会出现不断的闪烁.
请问在Timer控件下用C或C++如何编程
谢谢哈!那位哥哥帮下忙,小弟急求答案
万分感谢,谢谢哈!


[解决办法]
Timer1-> Interval设置为250

void __fastcall TForm1::Timer1Timer(TObject *Sender)
{
if (Memo1-> Text == " ")
Memo1-> Text = "3 ";
else
Memo1-> Lines-> Clear();
}
[解决办法]
up
不过Timer1-> Interval应该设置为500吧?
[解决办法]
不过Timer1-> Interval应该设置为500吧?
=============================================================
250显示250停止,加起来正好500


能不能让Memo的某一行闪烁?
================================================
void __fastcall TForm1::Timer1Timer(TObject *Sender)
{
Memo1-> Lines-> Strings[0] = Memo1-> Lines-> Strings[0] == " "? "3 " : " ";
}

热点排行