Dear all,
i have to export data from ax to .txt form , everything is working but i want output like given screen without " "
static void askexportfile(Args _args)
{
CommaIO CommaIo;
FileName fileName;
;
fileName = @'D:\Support\akshay\' + custinvoicejour.InvoiceId + ".txt";//".csv";
CommaIo = new CommaIO(fileName,'W');
CommaIo.write('Name','ItemName,','Qty');
CommaIo.outRecordDelimiter(" ");
CommaIo.write("akshay","10001",6 );
}
WINAPI::shellExecute(fileName);
}
Output

how do i get file without " " this. Like

Please provide me solution on this how do i achieve this.
Thanks
Akshay