【发布时间】:2008-09-02 00:33:09
【问题描述】:
我想将VFP7 报告上的所有字段和标签设置为Float 和Stretch with overflow。我尝试使用.frx 文件并执行以下REPLACE 但它不起作用。
我还需要更改其他字段吗?
REPLACE float WITH .T. FOR objtype = 8
【问题讨论】:
标签: report foxpro visual-foxpro
我想将VFP7 报告上的所有字段和标签设置为Float 和Stretch with overflow。我尝试使用.frx 文件并执行以下REPLACE 但它不起作用。
我还需要更改其他字段吗?
REPLACE float WITH .T. FOR objtype = 8
【问题讨论】:
标签: report foxpro visual-foxpro
事实证明,您必须将top 设置为.F. 才能使float 生效,这有效:
USE report.frx
REPLACE float with .T., stretch with .T., top with .F. for objtype = 8
【讨论】: