Ok this is probably a noob issue... probably a really newb issue lol, but I am a newb so here it goes:
I want to write down the following text in an edit control: C:\Documents and Settings\Blah\Desktop\myText.txt
I wrote the following code:
SendMessage(hWnd, WM_SETTEXT, 0, (LPARAM)"C:\Documents and Settings\Blah\Desktop\myText.txt");
And it does write in the edit control, however it doesn't write exactly what I wanted, rather it writes:
C:Documents and SettingsBlahDesktopmyText.txt
which is everything except the "\" symbol.... Now I have looked everywhere for a solution but haven't found one cause I am a newb.
Question:: What do I have to write in the fourth parameter so that the "\" can also be included?