Click here to Skip to main content
15,900,108 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralDLL problem Pin
Ghasrfakhri25-Oct-03 21:38
Ghasrfakhri25-Oct-03 21:38 
GeneralRe: DLL problem Pin
Jörgen Sigvardsson26-Oct-03 0:26
Jörgen Sigvardsson26-Oct-03 0:26 
GeneralATL collection and event firing Pin
Paul Farry25-Oct-03 19:45
professionalPaul Farry25-Oct-03 19:45 
GeneralRe: ATL collection and event firing Pin
Jörgen Sigvardsson26-Oct-03 0:34
Jörgen Sigvardsson26-Oct-03 0:34 
GeneralWhats the IP Mr. Winsock? (How can I find out a connected persons IP) Pin
STS_Secure_Telnet25-Oct-03 19:38
STS_Secure_Telnet25-Oct-03 19:38 
GeneralRe: Whats the IP Mr. Winsock? (How can I find out a connected persons IP) Pin
andyvinc25-Oct-03 21:35
andyvinc25-Oct-03 21:35 
Generalcharacter presentation Pin
convert_sg25-Oct-03 19:11
convert_sg25-Oct-03 19:11 
GeneralRe: character presentation Pin
Gary R. Wheeler26-Oct-03 6:10
Gary R. Wheeler26-Oct-03 6:10 
TCHAR is a macro. If the UNICODE symbol is defined, TCHAR is defined as wchar_t, and as char otherwise.

Your Chinese character '人' is a double byte character, so it must be represented using wchar_t, as follows:
wchar_t chinese_character = L'人';


I cut/pasted your character into a file and looked at it using a hex editor. The character in hex is 0x4EBA.


Software Zen: delete this;
GeneralRe: character presentation Pin
convert_sg29-Oct-03 15:18
convert_sg29-Oct-03 15:18 
Questionhow to detect when an app is invoked from another running application Pin
raishum25-Oct-03 19:09
raishum25-Oct-03 19:09 
AnswerRe: how to detect when an app is invoked from another running application Pin
igor196026-Oct-03 10:02
igor196026-Oct-03 10:02 
GeneralToggling the password style in an edit box Pin
Michael Dunn25-Oct-03 17:56
sitebuilderMichael Dunn25-Oct-03 17:56 
GeneralRe: Toggling the password style in an edit box Pin
Gary R. Wheeler26-Oct-03 6:43
Gary R. Wheeler26-Oct-03 6:43 
GeneralRe: Toggling the password style in an edit box Pin
Michael Dunn26-Oct-03 6:54
sitebuilderMichael Dunn26-Oct-03 6:54 
GeneralRe: Toggling the password style in an edit box Pin
igor196026-Oct-03 10:08
igor196026-Oct-03 10:08 
GeneralRe: Toggling the password style in an edit box Pin
Michael Dunn26-Oct-03 20:19
sitebuilderMichael Dunn26-Oct-03 20:19 
QuestionHow to kill a process by its processID? Pin
George225-Oct-03 17:18
George225-Oct-03 17:18 
AnswerRe: How to kill a process by its processID? Pin
Michael Dunn25-Oct-03 17:36
sitebuilderMichael Dunn25-Oct-03 17:36 
GeneralRe: How to kill a process by its processID? Pin
George225-Oct-03 23:11
George225-Oct-03 23:11 
AnswerRe: How to kill a process by its processID? Pin
Carlos Antollini25-Oct-03 17:45
Carlos Antollini25-Oct-03 17:45 
GeneralRe: How to kill a process by its processID? Pin
George225-Oct-03 23:13
George225-Oct-03 23:13 
GeneralResources Pin
Daniel132425-Oct-03 17:12
Daniel132425-Oct-03 17:12 
GeneralRe: Resources Pin
Terry O'Nolley25-Oct-03 17:48
Terry O'Nolley25-Oct-03 17:48 
GeneralRe: Resources Pin
Daniel132425-Oct-03 17:53
Daniel132425-Oct-03 17:53 
GeneralRe: Resources Pin
Terry O'Nolley25-Oct-03 18:04
Terry O'Nolley25-Oct-03 18:04 

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.