[futurebasic] Re: Print Util.fltr Bug and questions

Message: < previous - next > : Reply : Subscribe : Cleanse
Home   : March 1998 : Group Archive : Group : All Groups

From: Chris.Young@...
Date: Wed, 18 Mar 1998 09:35:47 -0600
Bill Michael wrote:
< (BTW: The easy translation of "numberOfCopies = (**thePrRecHdl).prJob.iCopies"
< is "copies% = [PRHANDLE]+66".) 

This can't be right. It would have to be 
copies% = {[PRHANDLE]+66}                      (note the {})

The most direct translation (and backwards traceable, IMHO) would be 
numberOfCopies% = thePrRecHdl&..prJob.iCopies%

Interesting to note where the 66 comes from: _prJob is listed as 62 in the 
constants tool, and _iCopies is 4.

Chris Young