发布网友 发布时间:2023-11-07 07:24
共5个回答
热心网友 时间:2024-12-15 00:30
combobox1.Items.Count就是下拉框中的个数热心网友 时间:2024-12-15 00:31
combobox1.Items.Count就是下拉数据的个数热心网友 时间:2024-12-15 00:31
combobox1.add(edit1.text); 改成 combobox1.Items.add(edit1.text);热心网友 时间:2024-12-15 00:32
showmessage(inttostr(ComboBox1.ItemIndex));追答前面写错了showmessage(inttostr(combobox1.Items.Count));
应该是这个
这里你加一个判断
var
i:integer
begin
for I := 0 to combobox1.Items.Count - 1 do
begin
if combobox1.Items[i]:=edit1.text then
exit
end;
combobox1.add(edit1.text);
end;
解释下 做一个循环判断从combobox中第一行开始到最后一行
如果有内容等于edit1.text 那么程序结束,等到最后一行执行完,如果还有没有一样的,那么添加edit1.text进去
我这里没有编译器 手写的
热心网友 时间:2024-12-15 00:32
indexof