If I want to write the results of a query to TextFile with a special Deliminiter, Will this work if the line exceeds 255 characters?
Thanks,
Rewdee
Code:
Procedure WriteTxt;
Var
F : Textfile;
Begin
AssignFile(F, 'c:\SomeFile.txt');
Append(F);
Writeln(F, qry1.fields(0).asString +'~' + etc.);
Closefile(F);
End;
Thanks,
Rewdee