P panjf Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-05 #1 如何给Style=csDropDownList的combobox赋初值?
Z zhengzhijia Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-05 #3 在创建窗体时: ComboBox1.ItemIndex := 0;
J jollier Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-06 #4 由于Style:=csDropDownList的combobox不能直接用其Text属性赋初值,也不能在运行时写值, 但可以用其Add方法在运行时动态的添加所要选的项,故可用一下方法: ComboBox1.ItemIndex :=i//i为你要给其赋初值的ItemIndex.
由于Style:=csDropDownList的combobox不能直接用其Text属性赋初值,也不能在运行时写值, 但可以用其Add方法在运行时动态的添加所要选的项,故可用一下方法: ComboBox1.ItemIndex :=i//i为你要给其赋初值的ItemIndex.