Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Copying to a delimited
Message
 
 
To
24/09/2001 16:18:12
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00560023
Message ID:
00560233
Views:
17
>I see where the first field flag is set to true initially and then set to false, but I don't where the flag is reset to true to create a new line.
>
>Thanks,
>Eric
do while !empty(lcFile)
	lcJustPath = justpath(lcFile)
	lcJustStem = juststem(lcFile)
	lcTextFile = lower(addbs(lcJustPath) + lcJustStem + ".txt")
	<b>llFirstField = .t.</b>
Move that line:
do while !empty(lcFile)
	lcJustPath = justpath(lcFile)
	lcJustStem = juststem(lcFile)
	lcTextFile = lower(addbs(lcJustPath) + lcJustStem + ".txt")
	use (lcFile)
	set textmerge on noshow
	set textmerge to (lcTextFile)
	oProgress.Caption = "Export progress"
	oProgress.Show()
	scan
		llFirstField = .t.
Mark McCasland
Midlothian, TX USA
Previous
Reply
Map
View

Click here to load this message in the networking platform