如何把数据表中三个字段分别分给stringgrid的三列,然后再合计字段中能自动显示数值?(50分)

  • 主题发起人 主题发起人 sharkboy
  • 开始时间 开始时间
S

sharkboy

Unregistered / Unconfirmed
GUEST, unregistred user!
如何把数据表中三个字段分别分给stringgrid的三列,然后再合计字段中能自动显示数值?
品名 单价 数量 合计
苹果 3   2   6
梨子 1   3   3
 
select 品名,数量,(品名*数量) as 合计
from 数据表
 
With Adodataset1 do
begin
Close;
CommandText:='select 品名,数量,(品名*数量) as 合计 from 数据表';
Open;
While not eof do
begin
for i:=0 to fieldCount-1 do StringGrid1.Cells[i+1,RecNo]:=fields.Asstring;
next;
end;
end;
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
1K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
890
SUNSTONE的Delphi笔记
S
D
回复
0
查看
2K
DelphiTeacher的专栏
D
后退
顶部