csv file problem
-
actually on saving file at close of application it is inserting end of file after every character.this is actually the problem.
Please answer, what have you seen at the message boxes ? :)
virtual void BeHappy() = 0;
-
Please answer, what have you seen at the message boxes ? :)
virtual void BeHappy() = 0;
in both cases it is showing count 1024 in messageboxes..my qus is that where is my code inserting EOF after every character?
-
in both cases it is showing count 1024 in messageboxes..my qus is that where is my code inserting EOF after every character?
Good, the file can be read in the both cases :) What is your next step (wish) please ? :) Would you like to read and write an UNICODE or ANSI csv-file ? :)
virtual void BeHappy() = 0;
-
Good, the file can be read in the both cases :) What is your next step (wish) please ? :) Would you like to read and write an UNICODE or ANSI csv-file ? :)
virtual void BeHappy() = 0;
why my code is inserting EOF after evry character on saving file.where my code is wrong?
-
why my code is inserting EOF after evry character on saving file.where my code is wrong?
When your project is configured as UNICODE project the output will be performed by two bytes per character... Would you like to see your output in ANSI ? :)
virtual void BeHappy() = 0;
-
When your project is configured as UNICODE project the output will be performed by two bytes per character... Would you like to see your output in ANSI ? :)
virtual void BeHappy() = 0;
yes?but i want to keep the project as unicode
-
yes?but i want to keep the project as unicode
:) چرا که نه؟ Just convert your string to ANSI sequence:
#include <AtlConv.h>
...
{
...
USES_CONVERSION;
LPSTR lpszANSI = T2A(cszOut);
cOutFile.Write(lpszANSI, strlen(lpszANSI));
...
}virtual void BeHappy() = 0;
-
:) چرا که نه؟ Just convert your string to ANSI sequence:
#include <AtlConv.h>
...
{
...
USES_CONVERSION;
LPSTR lpszANSI = T2A(cszOut);
cOutFile.Write(lpszANSI, strlen(lpszANSI));
...
}virtual void BeHappy() = 0;
thanx a lot Eugen Podsypalnikov that was what the problem was actually it was inserting extra byte.thanx nw it is working fine after converting to ansi. Regards
-
thanx a lot Eugen Podsypalnikov that was what the problem was actually it was inserting extra byte.thanx nw it is working fine after converting to ansi. Regards
You are welcome ! (sometimes I do read and write UNICODE csv-files, you could it too, when it will be needed once :) )
virtual void BeHappy() = 0;
-
You are welcome ! (sometimes I do read and write UNICODE csv-files, you could it too, when it will be needed once :) )
virtual void BeHappy() = 0;
yeah thanx ;)