T tt55 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-05 #1 我想把数据库中某表中的某行字段值读去出来,然后用stringlist来保存, 再用checklistbox来显示个项值,请问如何实现呢?大家帮帮忙!
S sundart Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-05 #2 打数据元件打开这个表, while not eof do begin stringList1.add(FieldByName('xxx').asString); next; end; for i := 0 to StringList1.count -1 do checkListBox.Items.add...
打数据元件打开这个表, while not eof do begin stringList1.add(FieldByName('xxx').asString); next; end; for i := 0 to StringList1.count -1 do checkListBox.Items.add...
D dlnew Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-05 #5 行还是列? 是列的话用fields.value (i := 0 to fieldcount - 1)