Click here to Skip to main content
15,898,134 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: socket question Pin
Jun Du25-Jun-06 4:24
Jun Du25-Jun-06 4:24 
GeneralRe: socket question Pin
mohanrajh25-Jun-06 17:24
mohanrajh25-Jun-06 17:24 
GeneralRe: socket question Pin
Jun Du26-Jun-06 4:05
Jun Du26-Jun-06 4:05 
GeneralRe: socket question Pin
Jun Du26-Jun-06 4:44
Jun Du26-Jun-06 4:44 
QuestionChange a Unicode project to MBCS using VS2005 Pin
cv_k3n24-Jun-06 23:44
cv_k3n24-Jun-06 23:44 
AnswerRe: Change a Unicode project to MBCS using VS2005 Pin
Justin Tay25-Jun-06 0:05
Justin Tay25-Jun-06 0:05 
GeneralRe: Change a Unicode project to MBCS using VS2005 Pin
cv_k3n25-Jun-06 0:14
cv_k3n25-Jun-06 0:14 
GeneralRe: Change a Unicode project to MBCS using VS2005 [modified] Pin
Justin Tay25-Jun-06 0:37
Justin Tay25-Jun-06 0:37 
That depends on what you are doing and why you consider this a problem.

file.Write((LPCTSTR) tempbuf, tempbuf.GetLength() * sizeof(TCHAR));


You would then have a file with a UTF16LE string that says "Job number,". (edit: for unicode builds, and a normal ascii string for your mbcs build)

Have you considered...
CStringA tempbuf;
tempbuf = "Job number,";
file.Write((LPCSTR)tempbuf,tempbuf.GetLength());
file.Close;
?

-- modified at 6:40 Sunday 25th June, 2006
GeneralRe: Change a Unicode project to MBCS using VS2005 Pin
cv_k3n25-Jun-06 0:54
cv_k3n25-Jun-06 0:54 
GeneralRe: Change a Unicode project to MBCS using VS2005 Pin
cv_k3n26-Jun-06 10:28
cv_k3n26-Jun-06 10:28 
GeneralRe: Change a Unicode project to MBCS using VS2005 Pin
Justin Tay27-Jun-06 5:06
Justin Tay27-Jun-06 5:06 
Questioncann't add a project to the current workspace Pin
old_dustman24-Jun-06 22:48
old_dustman24-Jun-06 22:48 
AnswerRe: cann't add a project to the current workspace Pin
old_dustman24-Jun-06 23:18
old_dustman24-Jun-06 23:18 
GeneralRe: cann't add a project to the current workspace Pin
Jun Du26-Jun-06 4:51
Jun Du26-Jun-06 4:51 
QuestionHow to change the icon i listctrl? Pin
xuwenq8824-Jun-06 22:11
xuwenq8824-Jun-06 22:11 
AnswerRe: How to change the icon i listctrl? Pin
Hamid_RT25-Jun-06 3:06
Hamid_RT25-Jun-06 3:06 
GeneralRe: How to change the icon i listctrl? Pin
xuwenq8825-Jun-06 4:27
xuwenq8825-Jun-06 4:27 
GeneralRe: How to change the icon i listctrl? Pin
Hamid_RT25-Jun-06 18:16
Hamid_RT25-Jun-06 18:16 
AnswerRe: How to change the icon i listctrl? Pin
Michael Dunn25-Jun-06 7:50
sitebuilderMichael Dunn25-Jun-06 7:50 
GeneralRe: How to change the icon i listctrl? Pin
xuwenq8825-Jun-06 17:43
xuwenq8825-Jun-06 17:43 
GeneralRe: How to change the icon i listctrl? Pin
Michael Dunn25-Jun-06 17:45
sitebuilderMichael Dunn25-Jun-06 17:45 
GeneralRe: How to change the icon i listctrl? Pin
xuwenq8826-Jun-06 5:50
xuwenq8826-Jun-06 5:50 
QuestionCRecordset problem Pin
moodsey21124-Jun-06 22:06
moodsey21124-Jun-06 22:06 
AnswerRe: CRecordset problem Pin
ovidiucucu25-Jun-06 1:30
ovidiucucu25-Jun-06 1:30 
AnswerRe: CRecordset problem Pin
ovidiucucu25-Jun-06 2:18
ovidiucucu25-Jun-06 2:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.