以文本方式查看主题 - Foxtable(狐表) (http://foxtable.com/bbs/index.asp) -- 专家坐堂 (http://foxtable.com/bbs/list.asp?boardid=2) ---- 专业报表 打印 金额 (http://foxtable.com/bbs/dispbbs.asp?boardid=2&id=11252) |
|
-- 作者:tungwun -- 发布时间:2011/7/14 21:26:00 -- 专业报表 打印 金额 专业报表 打印 金额 打印的时候将金额列的内容打印成 $1234.00 RT= new prt.RenderText rt.Text = CurRow("金额") rt.x = 109 rt.y = 57 doc.body.Children.Add(rt)
|
|
-- 作者:狐狸爸爸 -- 发布时间:2011/7/14 21:30:00 -- RT= new prt.RenderText rt.Text = Format(CurRow("金额"),"$#0.00") rt.x = 109 rt.y = 57 doc.body.Children.Add(rt) |
|
-- 作者:tungwun -- 发布时间:2011/7/15 10:35:00 -- 金额是没有数据 可否隐藏($0.00)
|
|
-- 作者:狐狸爸爸 -- 发布时间:2011/7/15 10:36:00 -- if curRow("金额") > 0 then rt.Text = Format(CurRow("金額"),"$#0.00") end if |