如何在ComboBox中增加内容?(15分)

  • 主题发起人 主题发起人 ji0224
  • 开始时间 开始时间
J

ji0224

Unregistered / Unconfirmed
GUEST, unregistred user!
有一ComboBox框,里面有些选项,如果写入一条新的信息,自动将这条信息增加到Combobox选项中?
procedure TForm.comboboxExit();
begin
if not(Trim(combobox.text) in []) then //in 后面怎样写???
combobox.items.add(combox.text);
 
写成if combobox.Indexof(trim(combobox.text))=-1 then 即可
 
一语惊醒梦中人,不过语法是
combobox.items.indexof(...)=-1
不过有没高手知道用if not(Trim(combobox.text) in []) then 怎么做啊?
怎样将combobox中的内容一项项提出到in[]里面啊?
或者说用个for i;=0 to combobox.items.count-1 do循环
 
没用过,是不是应该这样
if not(Trim(combobox.text) in ['']) then
 
接受答案了.
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
后退
顶部