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 Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

TEXTMERGE in VFP6

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I'm creating 3 textmerge files,
the first one has a blank record at the top,
the second one has the last line fron the first one, and the 3rd one has the last line from the second????

do I need to flush the data some how?

SET TEXTMERGE ON
SET TEXTMERGE TO filecopy.bat NOSHOW
\@echo off
\copy temp1.job+temp2.job+temp3.job <<(lcname)>>.job
SET TEXTMERGE TO
SET TEXTMERGE OFF

thanks -Mike
 
Mike,
I'm not exactly sure what your &quot;flush&quot; problem might be, although you might what to flip-flop your
SET TEXTMERGE TO
SET TEXTMERGE OFF
statements:
SET TEXTMERGE OFF
SET TEXTMERGE TO

To kill the first blank line, use \\ instead of \ for the first record i.e.:
\\@echo off

Rick
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top