views:

177

answers:

1

I want to set all the fields and labels on a VFP7 report to "Float" and "Stretch with overflow". I tried USEing the .frx file and doing the following REPLACE but it didn't work. Is there some other field I need to change too?

REPLACE float WITH .T. FOR objtype = 8
+2  A: 

It turns out you have to set top to .F. for float to take effect, this worked:

USE report.frx
REPLACE float with .T., stretch with .T., top with .F. for objtype = 8
Tom