Options

Skip 1st header row in text file when using XMLPort

undy0602undy0602 Member Posts: 67
Hello developers,
How can I skip 1st header row in text file when using XMLPort? I`ve searched about that on this forum but I cant solve it.
I think Seek() and trunc are possible for that. My header rows lenght is 153. And write it on the below example. but first row left and other text is deleted.

varXmlFile.WRITEMODE(TRUE);
varXmlFile.OPEN('C:\text.txt);
varXmlFile.SEEK(153);
varXmlFile.TRUNC;

Regards,
Undy

Answers

Sign In or Register to comment.