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
From stackoverflow
Tom
-
It turns out you have to set
topto.F.forfloatto take effect, this worked:USE report.frx REPLACE float with .T., stretch with .T., top with .F. for objtype = 8From Tom
0 comments:
Post a Comment