自动浮动VFP报表中的所有字段?
时间:2020-03-05 18:46:11 来源:igfitidea点击:
我想将VFP7报表上的所有字段和标签都设置为"浮动"和"有溢出的拉伸"。我尝试对.frx文件进行USE使用,并执行以下REPLACE命令,但没有成功。我还需要更改其他字段吗?
REPLACE float WITH .T. FOR objtype = 8
解决方案
回答
事实证明,必须将" top"设置为" .F。"才能使" float"生效,这是可行的:
USE report.frx REPLACE float with .T., stretch with .T., top with .F. for objtype = 8