Click here to Skip to main content
15,911,890 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Using Microsoft RTC, for video conferencing Pin
Mark Salsbery18-Aug-08 5:34
Mark Salsbery18-Aug-08 5:34 
GeneralRe: Using Microsoft RTC, for video conferencing Pin
Ahmed Charfeddine18-Aug-08 5:41
Ahmed Charfeddine18-Aug-08 5:41 
GeneralRe: Using Microsoft RTC, for video conferencing Pin
Mark Salsbery18-Aug-08 6:06
Mark Salsbery18-Aug-08 6:06 
GeneralRe: Using Microsoft RTC, for video conferencing Pin
Ahmed Charfeddine18-Aug-08 21:17
Ahmed Charfeddine18-Aug-08 21:17 
Questionshell language Pin
iayd12-Aug-08 22:50
iayd12-Aug-08 22:50 
AnswerRe: shell language Pin
Michael Schubert12-Aug-08 23:41
Michael Schubert12-Aug-08 23:41 
GeneralRe: shell language Pin
iayd13-Aug-08 1:46
iayd13-Aug-08 1:46 
GeneralRe: shell language Pin
Michael Schubert13-Aug-08 2:04
Michael Schubert13-Aug-08 2:04 
I think you also have to set the correct font and character set for your edit control. Something like this:

CFont fnt;
LOGFONT lf;
::ZeroMemory(&lf, sizeof(lf));
lf.lfHeight = 18;
lf.lfCharSet = ARABIC_CHARSET;
::lstrcpy(lf.lfFaceName, "System");
fnt.CreateFontIndirect(&lf);
GetDlgItem(IDC_EDIT)->SetFont(&fnt);
fnt.Detach();

QuestionCDialog Destroy leak! Pin
gamja12-Aug-08 22:41
gamja12-Aug-08 22:41 
AnswerRe: CDialog Destroy leak! Pin
_AnsHUMAN_ 12-Aug-08 22:57
_AnsHUMAN_ 12-Aug-08 22:57 
GeneralRe: CDialog Destroy leak! Pin
gamja12-Aug-08 23:03
gamja12-Aug-08 23:03 
QuestionRe: CDialog Destroy leak! Pin
David Crow13-Aug-08 3:33
David Crow13-Aug-08 3:33 
Questionazimuth formula Pin
winburn12-Aug-08 21:13
winburn12-Aug-08 21:13 
AnswerRe: azimuth formula Pin
Rajesh R Subramanian12-Aug-08 21:33
professionalRajesh R Subramanian12-Aug-08 21:33 
AnswerRe: azimuth formula Pin
hoxsiew13-Aug-08 8:18
hoxsiew13-Aug-08 8:18 
QuestionTreeCtrl with CheckBox !! Pin
Le@rner12-Aug-08 21:00
Le@rner12-Aug-08 21:00 
AnswerRe: TreeCtrl with CheckBox !! Pin
aks.13-Aug-08 0:57
aks.13-Aug-08 0:57 
QuestionReading a value from another Project. Pin
T.RATHA KRISHNAN12-Aug-08 19:56
T.RATHA KRISHNAN12-Aug-08 19:56 
AnswerRe: Reading a value from another Project. Pin
_AnsHUMAN_ 12-Aug-08 20:09
_AnsHUMAN_ 12-Aug-08 20:09 
QuestionRe: Reading a value from another Project. Pin
T.RATHA KRISHNAN12-Aug-08 20:21
T.RATHA KRISHNAN12-Aug-08 20:21 
AnswerRe: Reading a value from another Project. Pin
Cedric Moonen12-Aug-08 21:28
Cedric Moonen12-Aug-08 21:28 
AnswerRe: Reading a value from another Project. Pin
Jijo.Raj12-Aug-08 20:33
Jijo.Raj12-Aug-08 20:33 
QuestionRe: Reading a value from another Project. [modified] Pin
T.RATHA KRISHNAN12-Aug-08 20:48
T.RATHA KRISHNAN12-Aug-08 20:48 
AnswerRe: Reading a value from another Project. Pin
Jijo.Raj12-Aug-08 21:42
Jijo.Raj12-Aug-08 21:42 
AnswerRe: Reading a value from another Project. Pin
KarstenK12-Aug-08 21:37
mveKarstenK12-Aug-08 21:37 

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.