Take a look at the following pages:Outputting the ASCII header to a text object
How import multiple headerlines from asciifile?
ASCII Header Information
Kwondledge Base: Move
I remember I had some problems with all the solutions. What I usually do is to import the header in the column labels (by skipping that lines for the rows, and so inserting this information into the column labels), and then access the text with commands of this type:
%m=data1!wks.col1.label$; // take the label of the 1st column
%m=%[%m,@2]; // take the second line of that label
header.text$=\b(%m); // put that text into the contents of the "header" object, on a graph, for instance
But I don't have many necessities of this kind, so my solutions can be too simple...
jose.
[This message has been edited by Jose (edited 09-25-2000).]