M
moutocean
Unregistered / Unconfirmed
GUEST, unregistred user!
for i:=0 to combobox1.items.Count-1 do
combobox1.Items.Delete(i);
用上面这段程序来请删除combobox1中的所有选项时,发现删除实质上除奇数项.如:
本来items为:1,2,3,4,5,6
删除后为: 2,4,6.
并没有清空items,why?
combobox1.Items.Delete(i);
用上面这段程序来请删除combobox1中的所有选项时,发现删除实质上除奇数项.如:
本来items为:1,2,3,4,5,6
删除后为: 2,4,6.
并没有清空items,why?