H hbuwxh Unregistered / Unconfirmed GUEST, unregistred user! 2005-08-16 #1 诸位大侠,我是一菜鸟.在使用ComboBox控件时,需要用程序控制选择其中的某一项,请问诸位该怎样写?
H hbuwxh Unregistered / Unconfirmed GUEST, unregistred user! 2005-08-16 #2 诸位大侠,我是一菜鸟.在使用ComboBox控件时,需要用程序控制选择其中的某一项,请问诸位该怎样写?
C ccrun Unregistered / Unconfirmed GUEST, unregistred user! 2005-09-16 #4 >>> 控制选择其中的某一项 不知道你要如何控制。 读出当前选中项? String strTemp = ComboBox1->Items->Strings[ComboBox1->ItemIndex]; 设定某一项为选中状态? ComboBox1->ItemIndex = 2; 改变某一项的文字内容? int i=1; ComboBox1->Items->Strings = "嘿嘿,新名称";
>>> 控制选择其中的某一项 不知道你要如何控制。 读出当前选中项? String strTemp = ComboBox1->Items->Strings[ComboBox1->ItemIndex]; 设定某一项为选中状态? ComboBox1->ItemIndex = 2; 改变某一项的文字内容? int i=1; ComboBox1->Items->Strings = "嘿嘿,新名称";