How do I convert from CString to const char* in my Unicode MFC application?
| |||||
feedback
|
|
To convert a
There is also a macro to convert from ASCII -> Unicode ( See the MSDN for more info. | |||||
feedback
|
|
Note: This answer predates the Unicode requirement; see the comments. Just cast it:
It works because CString has a cast operator to do exactly this. Using TCHAR makes your code Unicode-independent; if you're not concerned about Unicode you can simply use | |||||
feedback
|
|
If your CString is Unicode, you'll need to do a conversion to multi-byte characters. Fortunately there is a version of CString which will do this automatically.
| |||||
feedback
|
|
There is an explicit cast on CString to LPCTSTR, so you can do (provided unicode is not specified):
| |||
|
feedback
|
|
I had a similar problem. I had a
| ||||
|
feedback
|