How to make the first row as the header???
Dear all, I got in trouble while creating C# JMP automation program, Once opening up a CSV file, I'm not able to find a command to make the first row as the header.here is my code so far, please give me any idea or help... JMP.Document doc, doc2;
JMP.TextImport ti;
JMP.DataTable jmpDT, jmpRT;
startJMP();doc = myJMP.OpenDocument(jmpInstallDir + "Samples\\Data\\1111.CSV");
jmpDT = doc.GetDataTable();
my...