首页 相关文章 实现ComboBox输入文字的自动完成

实现ComboBox输入文字的自动完成

  

WORD lastkey ;
//---------------------------------------------------------------------------
void __fastcall TForm1::ComboBox1Change(TObject *Sender)
{
 String value = ComboBox1-Text ;
 // If the user tried to delete he must not want to change anything.
 if (lastkey == '\b' || lastkey == VK_DELETE)
 {
  lastkey = 0 ;
  return ;
 }
 lastkey = 0 ;
 // 确保使用者没有在中间插入字符
 if (ComboBox1-SelStart != value.Length ())
  return ;
 // 在下拉列表中寻找匹配项.
 int index = SendMessage (...[ 查看全文 ]

2016-02-19 标签:

实现ComboBox输入文字的自动完成的相关文章

手机页面
收藏网站 回到头部