csv file problem
-
hi, i have to write some data to csv file and have to insert new line after every record but data is not appering in correct format i.e new line is not appearing.wat can be the problem?
-
hi, i have to write some data to csv file and have to insert new line after every record but data is not appering in correct format i.e new line is not appearing.wat can be the problem?
Could you post your code line to put a text line out ? :)
virtual void BeHappy() = 0;
-
hi, i have to write some data to csv file and have to insert new line after every record but data is not appering in correct format i.e new line is not appearing.wat can be the problem?
If you're using
\n
for new line try using\r\n
instead.«_Superman_» I love work. It gives me something to do between weekends.
Microsoft MVP (Visual C++) -
If you're using
\n
for new line try using\r\n
instead.«_Superman_» I love work. It gives me something to do between weekends.
Microsoft MVP (Visual C++)strCSV = L"|" + strCSV+ char(13) + char(10); csvFile.Write(strCSV,strCSV.GetLength()); that is how i inserting.
-
strCSV = L"|" + strCSV+ char(13) + char(10); csvFile.Write(strCSV,strCSV.GetLength()); that is how i inserting.
Try it :) :
CString cszOut;
cszOut.Format(_T("|%s\r\n"), strCSV);
csvFile.Write(cszOut, cszOut.GetLength() * sizeof(TCHAR));virtual void BeHappy() = 0;
-
strCSV = L"|" + strCSV+ char(13) + char(10); csvFile.Write(strCSV,strCSV.GetLength()); that is how i inserting.
strCSV = L"|" + strCSV+ char(13) + char(10); csvFile.Write(strCSV,strCSV.GetLength()); that is how i inserting.but new line not appearing?
-
strCSV = L"|" + strCSV+ char(13) + char(10); csvFile.Write(strCSV,strCSV.GetLength()); that is how i inserting.but new line not appearing?
CString cszOut; cszOut.Format(_T("|%s\r\n"), strCSV); csvFile.Write(cszOut, cszOut.GetLength() * sizeof(TCHAR)); its workig for me great thanx.
-
Could you post your code line to put a text line out ? :)
virtual void BeHappy() = 0;
Thanks! I wish someone would always say that, when there is a programming question without a single line of code. :)
Webchat in Europe :java: Now with 26% more Twitter