L liaowang Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-17 #1 能不能只设置combobox的属性,使它style:=csDropDownList,而在程序中又能对它赋值 text始终不为空?如不能如何实现?
P panjf Unregistered / Unconfirmed GUEST, unregistred user! 2001-06-17 #3 由于Style:=csDropDownList的combobox不能在运行时写值, 但可以用其Add方法在运行时动态的添加所要选的项,故可用一下方法: ComboBox1.ItemIndex :=i//i为你要给其赋初值的ItemIndex.
由于Style:=csDropDownList的combobox不能在运行时写值, 但可以用其Add方法在运行时动态的添加所要选的项,故可用一下方法: ComboBox1.ItemIndex :=i//i为你要给其赋初值的ItemIndex.