N netmax Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-05 #1 请问使DBGrid中字段为Memo内容显示在DBListBox中?每一个Memo项为DBListBox中的一个Line.
D dedema Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-06 #4 你试过了吗? dblistbox1.Items.Assign (dbmemo1.Lines );
Q QuickSilver Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-06 #5 adotable1.First; DBListBox1.Items.Clear; while not adotable1.eof do begin DBListBox1.Items.Add(adotable1.fieldbyname('bz').asstring); adotable1.next; end; adotable1.First;
adotable1.First; DBListBox1.Items.Clear; while not adotable1.eof do begin DBListBox1.Items.Add(adotable1.fieldbyname('bz').asstring); adotable1.next; end; adotable1.First;
D dedema Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-06 #6 dblistbox1.Items.Text :=dbgrid1.Fields[6].AsString ; fields[6]为memo的那个字段!