Hello,
here is my question. I am new to VC++, but not C++.
I would like to pass a variable of type CString (VC++) to a string in (C++).
I currently am saving the variable of type CString in a file. Then in my C++ code open the file and read it out as type string.
Is there just some short conversion.
CString s1;
s1="hello";
string s2;
s2=s1;
could you do this? If not then what?
Thanks for the help,
Ronald
(oh, by the way, how do you put your pic in the site?)