如何在组合框中加入NotInList事件,当在组合框中输入新值时发生此事件(50分)

  • 主题发起人 主题发起人 hnzqw
  • 开始时间 开始时间
H

hnzqw

Unregistered / Unconfirmed
GUEST, unregistred user!
如何在组合框中加入NotInList事件,当在组合框中输入新值时发生此事件
 
在listbox的exit事件中作循环比较。如果无的话。不就是notinlist事件?
 
我想知道有没有关于OnNotinList的windows消息,免的走弯路。谢谢你!
 
There is no windows message is onnoinlist!
 
没这个事件,你可以在OnChange事件中判断:
if ComboBox1.Items.IndexOf(ComboBox1.Text)<0 then
ShowMessage('没找到');
 
后退
顶部