Malcolm, I've just done that and the current alias it is pointing to in the Page/Report header starts off OK but changes in the detail line to this "other cursor". It is just as though VFP is NOT picking up the correct alis to skip down for the report.. However why should running the same "report form..." command on consecutive lines render the first report rubbish but the second report perfect?
Dave Crozier The secret to staying young is to live honestly, eat slowly, and to lie about your age -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Malcolm Greene Sent: 16 August 2006 15:19 To: [email protected] Subject: RE: VFP "report form" Error Dave, Have you tried adding a small log function to each band to figure out the active work area at each step? Try adding the following function to as many places in your report as possible. Something like - untested: function reportlog( pcBandName ) #define CRLF chr(13) + chr(10) * WATCH EMAIL LINE WRAP! strtofile( textmerge( '<<pcBandName>> alias = <<alias()>>, recno() = <<recno()>>' ) + CRLF, 'report.log', .T. ) return '' endfunc Then review your report.log file to see what's happening? Malcolm [excessive quoting removed by server] _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/profox OT-free version of this list: http://leafe.com/mailman/listinfo/profoxtech ** All postings, unless explicitly stated otherwise, are the opinions of the author, and do not constitute legal or medical advice. This statement is added to the messages for those lawyers who are too stupid to see the obvious.

