怎样判断combobox中有无值(50分)

  • 主题发起人 主题发起人 stery
  • 开始时间 开始时间
S

stery

Unregistered / Unconfirmed
GUEST, unregistred user!
我是一个delphi的初学者,我在做一个小程序时必须判断程序的
combobox中是否有值存在,请各位高手指导。
 
看items.count
 
如果ComboBox的Style=csSimple or =csDropDown 可判断
ComboBox.Text是否为空字符串
否则判断comboBox.Items.Count>0
 
完全可以用:
if (length(combobox1.text)>0 )and (combobox.items.count>0) then
dosomeing
 
还有什么呢?好象没有了。
 
??(当前无值)
if combobox1.text<>'' then
...
 
if (trim(combobox1.text)<>'') and (combobox1.items.count<>0) then
 
谢谢你们的回答!我已经受益非浅了,我知道怎么做了,谢谢!
 
后退
顶部