Click here to Skip to main content
15,910,981 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Lil More problem....? Pin
Nibu babu thomas7-Jun-07 23:57
Nibu babu thomas7-Jun-07 23:57 
GeneralRe: Lil More problem....? Pin
Software_Specialist8-Jun-07 0:05
Software_Specialist8-Jun-07 0:05 
AnswerRe: Unicode prob? Pin
David Crow8-Jun-07 3:10
David Crow8-Jun-07 3:10 
AnswerRe: Unicode prob? Pin
Mark Salsbery8-Jun-07 7:20
Mark Salsbery8-Jun-07 7:20 
QuestionUnicode prob? Pin
Software_Specialist7-Jun-07 22:52
Software_Specialist7-Jun-07 22:52 
AnswerRe: Unicode prob? Pin
SandipG 7-Jun-07 23:02
SandipG 7-Jun-07 23:02 
GeneralRe: Unicode prob? Pin
Software_Specialist7-Jun-07 23:10
Software_Specialist7-Jun-07 23:10 
AnswerRe: Unicode prob? Pin
Matthew Faithfull7-Jun-07 23:09
Matthew Faithfull7-Jun-07 23:09 
It's not compulsory to use Unicode, you can remove the /D UNICODE from the MSVC project settings, but it is generally a good idea to go Unicode these days.
The short answer to whether you are going to have to change all the code or not is YES and the sooner you do it the less painful it will beFrown | :(
One option is to change your strcpys for tcscpys etc so that the code will compile with and without UNICODE defined. This way you can do the transition more gradually and in the meanwhile non Unicode builds which mix TCHARs with chars will work, keep putting in the changes to TCHAR functions until the code also builds and works in UNICODE. TCHAR and tcs functions turn into wchar and wcs with UNICODE defined(remeber to define _UINICODE as well beacuse someone at Microsoft screwed up) and they turn back into ordinary char stuff in non Unicode builds. You'll need <tchar.h> included of course.
Welcome to the wonderful world of international software Big Grin | :-D

Nothing is exactly what it seems but everything with seems can be unpicked.

AnswerRe: Unicode prob? Pin
Rajkumar R7-Jun-07 23:10
Rajkumar R7-Jun-07 23:10 
QuestionHow to indicate a socket is open or not? Pin
kcynic7-Jun-07 22:50
kcynic7-Jun-07 22:50 
AnswerRe: How to indicate a socket is open or not? Pin
Karismatic7-Jun-07 23:12
Karismatic7-Jun-07 23:12 
GeneralRe: How to indicate a socket is open or not? Pin
kcynic8-Jun-07 0:41
kcynic8-Jun-07 0:41 
QuestionRe: How to indicate a socket is open or not? Pin
David Crow8-Jun-07 2:34
David Crow8-Jun-07 2:34 
AnswerRe: How to indicate a socket is open or not? Pin
kcynic8-Jun-07 2:44
kcynic8-Jun-07 2:44 
GeneralRe: How to indicate a socket is open or not? Pin
David Crow8-Jun-07 2:48
David Crow8-Jun-07 2:48 
QuestionGet exe running location Pin
Johpoke7-Jun-07 22:47
Johpoke7-Jun-07 22:47 
AnswerRe: Get exe running location Pin
Hamid_RT7-Jun-07 22:49
Hamid_RT7-Jun-07 22:49 
QuestionRe: Get exe running location Pin
Johpoke7-Jun-07 23:00
Johpoke7-Jun-07 23:00 
AnswerRe: Get exe running location Pin
Hamid_RT7-Jun-07 23:05
Hamid_RT7-Jun-07 23:05 
QuestionRe: Get exe running location Pin
Johpoke7-Jun-07 23:15
Johpoke7-Jun-07 23:15 
AnswerRe: Get exe running location (solved) Pin
Johpoke7-Jun-07 23:24
Johpoke7-Jun-07 23:24 
GeneralRe: Get exe running location (solved) Pin
Hamid_RT8-Jun-07 3:53
Hamid_RT8-Jun-07 3:53 
AnswerRe: Get exe running location Pin
#realJSOP8-Jun-07 2:28
professional#realJSOP8-Jun-07 2:28 
QuestionCFileDialog and Adobe Reader problem Pin
rp_suman7-Jun-07 22:35
rp_suman7-Jun-07 22:35 
QuestionRe: CFileDialog and Adobe Reader problem Pin
Hamid_RT7-Jun-07 22:45
Hamid_RT7-Jun-07 22:45 

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.