H
hongshanwdj
Unregistered / Unconfirmed
GUEST, unregistred user!
while not adoTable3.Eof do begin if s<>adoTable3.FieldByName('编号').asstring then begin s:=adotable3.FieldByName('编号').asstring; s1:=adotable3.FieldByName('是否发送').asstring; if s1='是' then begin listbox1.Items.Add(s); 在这里添加代码使添加的s字体变为绿色 end else begin listbox1.Items.Add(s); 在这里添加代码使添加的s字体变为红色; end; end; adoTable3.Next; end;