I have a piece of code that originally used CString. Since it is not available to VSExpress users I replaced it with a CString "clone" found at: http://www.codeproject.com/KB/string/stdstring.aspx
This clone works just fine but one problem remains when using it:
TCHAR *GetConnectionString(){return m_szConnectionString)};
I get the error "no suitable conversion from "CStdStringW" to "TCHAR *" exists" and since string handling not really is my strength I don't know how to resolve this. Ok I know that I probably have to do some kind of type cast but.... The whole piece of code can be found at: Use CString in console app when using VS Express
Well, have a nice day and hopefully someone can help my with.
Regards Lumpi