Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Copying to a delimited
Message
 
 
À
24/09/2001 16:18:12
Information générale
Forum:
Visual FoxPro
Catégorie:
Codage, syntaxe et commandes
Divers
Thread ID:
00560023
Message ID:
00560233
Vues:
18
>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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform