Click here to Skip to main content
15,920,030 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Displaying a chart in a CScrollView report. [modified] Pin
Sternocera22-Oct-09 12:04
Sternocera22-Oct-09 12:04 
QuestionHow to display Text in Chinese? Pin
Software200722-Oct-09 7:27
Software200722-Oct-09 7:27 
AnswerRe: How to display Text in Chinese? Pin
Nemanja Trifunovic22-Oct-09 7:54
Nemanja Trifunovic22-Oct-09 7:54 
GeneralRe: How to display Text in Chinese? Pin
Software200722-Oct-09 9:22
Software200722-Oct-09 9:22 
GeneralRe: How to display Text in Chinese? Pin
dxlee22-Oct-09 10:02
dxlee22-Oct-09 10:02 
GeneralRe: How to display Text in Chinese? Pin
Software200722-Oct-09 10:19
Software200722-Oct-09 10:19 
GeneralRe: How to display Text in Chinese? Pin
Nemanja Trifunovic22-Oct-09 10:50
Nemanja Trifunovic22-Oct-09 10:50 
AnswerRe: How to display Text in Chinese? [modified] Pin
Michael Schubert22-Oct-09 11:20
Michael Schubert22-Oct-09 11:20 
Chinese text encoded with GB 2312 (CP936, Simplified Chinese) or Big-5 (CP950, Traditional Chinese) can be displayed in static or edit controls in MBCS apps if you adjust the font and it's properties.

For Simplified Chinese for example (m_font is CFont member of your dialog class):

LOGFONT lf;
memset(&lf, 0, sizeof(LOGFONT));
lf.lfCharSet = GB2312_CHARSET;
strcpy(lf.lfFaceName, "System");
lf.lfHeight = 17;
m_font.CreateFontIndirect(&lf);
GetDlgItem(IDC_EDIT)->SetFont(&m_font);


You'll have to run this on a Chinese system or at least set your system locale to Chinese.

The same goes for Korean and Japanese.

modified on Friday, October 23, 2009 4:00 AM

QuestionSolving a repaint problem in VS2005 [modified] Pin
SimplCodr22-Oct-09 6:24
SimplCodr22-Oct-09 6:24 
QuestionRe: Solving a repaint problem in VS2005 Pin
CPallini22-Oct-09 8:19
mveCPallini22-Oct-09 8:19 
AnswerRe: Solving a repaint problem in VS2005 Pin
SimplCodr22-Oct-09 10:13
SimplCodr22-Oct-09 10:13 
GeneralRe: Solving a repaint problem in VS2005 Pin
CPallini22-Oct-09 10:53
mveCPallini22-Oct-09 10:53 
GeneralRe: Solving a repaint problem in VS2005 Pin
SimplCodr22-Oct-09 10:54
SimplCodr22-Oct-09 10:54 
QuestionRe: Solving a repaint problem in VS2005 Pin
CPallini22-Oct-09 11:06
mveCPallini22-Oct-09 11:06 
AnswerRe: Solving a repaint problem in VS2005 Pin
SimplCodr22-Oct-09 11:25
SimplCodr22-Oct-09 11:25 
GeneralRe: Solving a repaint problem in VS2005 Pin
CPallini22-Oct-09 12:02
mveCPallini22-Oct-09 12:02 
GeneralRe: Solving a repaint problem in VS2005 Pin
SimplCodr22-Oct-09 12:20
SimplCodr22-Oct-09 12:20 
GeneralRe: Solving a repaint problem in VS2005 Pin
CPallini22-Oct-09 20:38
mveCPallini22-Oct-09 20:38 
QuestionRe: Solving a repaint problem in VS2005 Pin
SimplCodr23-Oct-09 3:51
SimplCodr23-Oct-09 3:51 
AnswerRe: Solving a repaint problem in VS2005 Pin
SimplCodr22-Oct-09 11:32
SimplCodr22-Oct-09 11:32 
GeneralRe: Solving a repaint problem in VS2005 Pin
theCPkid22-Oct-09 16:57
theCPkid22-Oct-09 16:57 
AnswerRe: Solving a repaint problem in VS2005 Pin
SimplCodr23-Oct-09 4:05
SimplCodr23-Oct-09 4:05 
GeneralRe: Solving a repaint problem in VS2005 Pin
theCPkid23-Oct-09 5:07
theCPkid23-Oct-09 5:07 
GeneralRe: Solving a repaint problem in VS2005 Pin
SimplCodr23-Oct-09 5:49
SimplCodr23-Oct-09 5:49 
GeneralRe: Solving a repaint problem in VS2005 Pin
CPallini23-Oct-09 5:41
mveCPallini23-Oct-09 5:41 

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.