H hmily1688 Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-08 #1 小弟对addobject方法不熟,我想实现这样的功能,一个表有ID,Name,用一个combobox显示名称,如果用户选择combobox中的name,则同时对应id,我原来是用一个Tstringlist存id实现,用combobox的index号来取出id号,用addobject可以实现吗。
小弟对addobject方法不熟,我想实现这样的功能,一个表有ID,Name,用一个combobox显示名称,如果用户选择combobox中的name,则同时对应id,我原来是用一个Tstringlist存id实现,用combobox的index号来取出id号,用addobject可以实现吗。
D dz2050 Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-08 #3 可以!不过addobject的对象只能是从Tobject继承出来的!
H hmily1688 Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-08 #4 怎么实现,是不是用一个指针,指向一个结构,取了id时用objects取了[?]
B beyondair Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-08 #5 如果只是添加名称,不需要用addobject吧, combobox1.Items.Add(const s:string); combobox1.Items.Insert(index:integer;const s:string); combobox1.Items.IndexOf(const s:string):integer; combobox1.Items.Strings[index]:string;
如果只是添加名称,不需要用addobject吧, combobox1.Items.Add(const s:string); combobox1.Items.Insert(index:integer;const s:string); combobox1.Items.IndexOf(const s:string):integer; combobox1.Items.Strings[index]:string;