S
sdiwen88
Unregistered / Unconfirmed
GUEST, unregistred user!
我用的是fastreport2.44,我用了一个页脚的Band,在Band上加了个MEMO1,我想实现的功能是在不同的页面上,MEMO1显示的值都不一样,比如:
第一页:MEMO1的值是空或是1,第二页:MEMO1的值是2,第三页:MEMO1的值是3或fdsafsda
请问怎么实现?我在网上查了资料,说可以用脚本但总是实现不了,我的MEMO1脚本是这样写的
if [PAGE#]=1 then
begin
MEMO1.Text:='fdsa'
end
if [PAGE#]=[TOTALPAGES] then
begin
MEMO1.Text:=Variable1
end
注:Variable1为变量
第一页:MEMO1的值是空或是1,第二页:MEMO1的值是2,第三页:MEMO1的值是3或fdsafsda
请问怎么实现?我在网上查了资料,说可以用脚本但总是实现不了,我的MEMO1脚本是这样写的
if [PAGE#]=1 then
begin
MEMO1.Text:='fdsa'
end
if [PAGE#]=[TOTALPAGES] then
begin
MEMO1.Text:=Variable1
end
注:Variable1为变量