Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

hacking FRX 1

Status
Not open for further replies.

tondi

Technical User
Nov 29, 2001
115
US
The various threads I have seen re: 'hacking FRX'
reference VFP. Is doing so possible with FPW26?

Tony
 
Tony,
Yes, but only the TAG and TAG2 fields apply - there shouldnt be anything in the EXPR field. It should be the first record - Objtype=1, Objcode=53.

Rick
 
Thanks Rick,
BUT how can I edit the file?
Tony
 
Try:
Code:
USE myreport.frx
LOCATE
*or GO TOP or LOCATE FOR Objtype=1 and Objcode=53 (if you're paranoid!)
REPLACE Tag WITH "", Tag2 WITH ""
USE && close it
You'll need to do this ANYTIME you make a change to the report (MODIFY REPORT ...), and before you build the .EXE.

Rick
 
Thanks Rick,
Your little routine cleared the Tag and Tag2 fields for me.
I assume this will help avoid conflicts with various printers and/or printer setups. I did notice that my Tag and Tag2 fields did contain several different printers,
local and/or network, depending on what computer the FRX was created and/or tested on.
Tony
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top