How can convert a char array to CString?
Hi All,
How can i convert a char array into CString?
I have one array like this
char charr[1000];
....
drwFile.Read(charr,500); //reading some characters from the file
CString str;
how to store the charr array in to str?
i m try this CString str(charr);
but when i display a message box with str value its display only first character of charr.
please help me for this.
thanks in advance.
IN A DAY, WHEN YOU DON'T COME ACROSS ANY PROBLEMS - YOU CAN BE SURE THAT YOU ARE TRAVELLING IN A WRONG PATH