对话框函数:
1。ShowMessage()
语法结构如下:ShowMessage(const Msg:string);
例子:
{ char *str; //定义字符串变量
str="欢迎来到C++Builder世界,这是showmessage()函数的例子";
ShowMessage(str);
}
2.ComboBox
读取当前ComboBox的值: ComboBox->Text为 String类
例如: String a=ComboBox1->Text;
3。IntToStr()
整数转字符串
例如:s1=65; Edit1->Text=IntToStr(s1);
4。label
WinForm 中Label自动换行 解决方法
在TableLayoutPannel中放着一些Label
把WordWrap属性设置成true,并同时把Label的AutoSize属性设成False。
5.时间
Form1->Time1->Caption=TimeToStr(Time());
6。关闭
Form1->Close();
AboutBox->Show();
delete AboutBox;