欢迎来到天天文库
浏览记录
ID:54697010
大小:28.50 KB
页数:2页
时间:2020-04-19
《c++ builder 常用函数汇总(1).doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、c++builder常用函数汇总对话框类函数打开对话框:if(OpenDialog1->Execute()){Memo1->Lines->LoadFromFile(OpenDialog1->FileName);}保存对话框:if(SaveDialog1->Execute()){Memo1->Lines->SaveToFile(SaveDialog1->FileName);}其它常用函数ShowMessage(s);//显示信息例子://-----------------------------------------------------------------
2、----------void__fastcallTForm1::Button5Click(TObject*Sender){ShowMessage("HelloWord!");inti=1000;ShowMessage(i);}//---------------------------------------------------------------------------Close();//退出程序例子://---------------------------------------------------------------------------v
3、oid__fastcallTForm1::Button3Click(TObject*Sender){Close();}//---------------------------------------------------------------------------Sleep(n);//延时n毫秒例子://---------------------------------------------------------------------------void__fastcallTForm1::Button4Click(TObject*Sender){Sl
4、eep(5000);//延时5000毫秒,即5秒钟}//---------------------------------------------------------------------------字符串函数如何取Memo中的某一行中的字符例子://---------------------------------------------------------------------------void__fastcallTForm1::Button6Click(TObject*Sender){//将Memo1中的第0行放到s中,注意,Memo控件的行号
5、从0开始Strings=Memo1->Lines->Strings[0].c_str();ShowMessage(s);}//---------------------------------------------------------------------------SubString(index,count)//字符串裁减函数Index为字符串的序号,从1开始,count为要裁减的长度,如:Strings=Edit1->Text;ShowMessage(s.SubString(1,2));IntToHex(n1,n2)//十进制转16进制,n1为要转换的
6、数,n2为转换的16进制的位数,如:inti=255;ShowMessage(IntToHex(i,2));StrToInt(s)//字符串转数字,如:Strings="1234";inti=4321+StrToInt(s);ShowMessage(i);IntToStr(n)//数字转字符串,如:inti=4321;Strings="1234"+IntToStr(i);ShowMessage(s);
此文档下载收益归作者所有