Click here to Skip to main content
15,917,702 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
JokeRe: Another question on c++ template Pin
CPallini8-Jun-07 2:09
mveCPallini8-Jun-07 2:09 
GeneralRe: Another question on c++ template Pin
Yuwen Zhou8-Jun-07 5:10
Yuwen Zhou8-Jun-07 5:10 
Questionauto_ptr Pin
vibindia7-Jun-07 23:42
vibindia7-Jun-07 23:42 
AnswerRe: auto_ptr Pin
CPallini7-Jun-07 23:52
mveCPallini7-Jun-07 23:52 
GeneralRe: auto_ptr Pin
vibindia8-Jun-07 0:00
vibindia8-Jun-07 0:00 
GeneralRe: auto_ptr Pin
CPallini8-Jun-07 0:05
mveCPallini8-Jun-07 0:05 
GeneralRe: auto_ptr Pin
vibindia8-Jun-07 0:09
vibindia8-Jun-07 0:09 
QuestionRegisterHotKey Ctrl+Alt+F1 Pin
Andy H7-Jun-07 23:19
Andy H7-Jun-07 23:19 
AnswerRe: RegisterHotKey Ctrl+Alt+F1 Pin
Nibu babu thomas7-Jun-07 23:33
Nibu babu thomas7-Jun-07 23:33 
GeneralRe: RegisterHotKey Ctrl+Alt+F1 Pin
Andy H8-Jun-07 0:36
Andy H8-Jun-07 0:36 
GeneralRe: RegisterHotKey Ctrl+Alt+F1 Pin
Andy H8-Jun-07 1:22
Andy H8-Jun-07 1:22 
GeneralRe: RegisterHotKey Ctrl+Alt+F1 Pin
Nibu babu thomas8-Jun-07 2:51
Nibu babu thomas8-Jun-07 2:51 
GeneralRe: RegisterHotKey Ctrl+Alt+F1 Pin
Andy H8-Jun-07 4:15
Andy H8-Jun-07 4:15 
AnswerRe: Unicode prob? Pin
Nibu babu thomas7-Jun-07 23:11
Nibu babu thomas7-Jun-07 23:11 
GeneralRe: Unicode prob? Pin
Software_Specialist7-Jun-07 23:15
Software_Specialist7-Jun-07 23:15 
GeneralLil More problem....? Pin
Software_Specialist7-Jun-07 23:54
Software_Specialist7-Jun-07 23:54 
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 
I don't know if anyone else mentioned this, but if you're going to go through all your code
and change it to work on Unicode, then I recommend in addition to changing all the char to TCHAR
also change all the CRT string calls to generics as well: strcpy = _tcscpy, strlen = _tcslen,
etc. instead of changing them to the wide character version.

That way all the code will be generic and you'll be able to reuse any code easier in any project
regardless of the character set settings.

It doesn't take that long to convert - I did a huge set of projects in a couple hours Smile | :)

MArk


"Posting a VB.NET question in the C++ forum will end in tears." Chris Maunder

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 
AnswerRe: Unicode prob? Pin
Rajkumar R7-Jun-07 23:10
Rajkumar R7-Jun-07 23:10 

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.