CBC中对按回车键的检测与响应方法

类别:编程语言 点击:0 评论:0 推荐:
void __fastcall TForm1::DBEdit1KeyPress(TObject *Sender, char &Key)
{
  if(Key==13)   --ASCII Code of Enter Key ,If press Enter Key
  {
    Form1->Button7->Click(); --Response of Button7
  }
}
正文 

本文地址:http://com.8s8s.com/it/it25699.htm