提问人:Wiehan 提问时间:10/29/2023 更新时间:10/29/2023 访问量:9
来自组合框的答案
Answer from combobox
问:
我有 9 个带有 3 个单选组按钮的组合框。 制作了一个单独的按钮来显示总数
例: 如果 cmbItems.itemindex = 0 那么
begin
if rbgcompany.itemindex = 0 then
begin
const
ijean = 125.50;
rans1 := ijean * iq;
Mem1.Lines.Add(inttostr(iq) + #9 + 'jean' + #9 + floattostrf(rans1,
ffcurrency, 8, 2));
end
else
if rbgcompany.itemindex = 1 then
begin
const
ijean = 127.99;
rans1 := ijean * iq;
Mem1.Lines.Add(inttostr(iq) + #9 + 'jean' + #9 + floattostrf(rans1,
ffcurrency, 8, 2))
end
else
if rbgcompany.itemindex = 2 then
begin
const
ijean = 128.50;
rans1:= ijean * iq;
Mem1.Lines.Add(inttostr(iq) + #9 + 'jean' + #9 + floattostrf(rans1,
ffcurrency, 8, 2));
end;
end;
结束; 如果 如果 cmbItems.itemindex = 1 那么 开始 ..................///重复索引中新项的代码
我无法获得 rans1、rans2、rans3......从 Combobox 到 加到“总计”按钮进行显示。 请帮忙
将“总计”按钮相加
答: 暂无答案
评论