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

C / C++ / MFC

 
QuestionSet Text bold in edit control Pin
sireesha_sree23-Apr-07 22:41
sireesha_sree23-Apr-07 22:41 
AnswerRe: Set Text bold in edit control Pin
vibindia23-Apr-07 22:52
vibindia23-Apr-07 22:52 
AnswerRe: Set Text bold in edit control Pin
prasad_som23-Apr-07 23:17
prasad_som23-Apr-07 23:17 
GeneralRe: Set Text bold in edit control Pin
vibindia23-Apr-07 23:27
vibindia23-Apr-07 23:27 
GeneralRe: Set Text bold in edit control Pin
Rajesh R Subramanian23-Apr-07 23:31
professionalRajesh R Subramanian23-Apr-07 23:31 
GeneralRe: Set Text bold in edit control Pin
David Crow24-Apr-07 3:08
David Crow24-Apr-07 3:08 
GeneralRe: Set Text bold in edit control Pin
sireesha_sree23-Apr-07 23:26
sireesha_sree23-Apr-07 23:26 
AnswerRe: Set Text bold in edit control Pin
prasad_som23-Apr-07 23:52
prasad_som23-Apr-07 23:52 
You can get current font from dialog, and then modify it to bold. Refer follwoing snippet,
CFont* ptemp = GetFont();
LOGFONT lf;
ptemp->GetLogFont(&lf);
lf.lfWeight = FW_BOLD;
CFont Temp1;
Temp1.CreateFontIndirect(&lf);
SetFont(&Temp1);



Prasad
MS MVP -  VC++

QuestionCustom Menu Keyboard Handling Pin
Nishad S23-Apr-07 22:38
Nishad S23-Apr-07 22:38 
AnswerRe: Custom Menu Keyboard Handling Pin
Ranjoy Guha24-Apr-07 2:08
Ranjoy Guha24-Apr-07 2:08 
QuestionWhere is stack frame Pin
sawerr23-Apr-07 22:07
sawerr23-Apr-07 22:07 
AnswerRe: Where is stack frame Pin
Mark Salsbery24-Apr-07 8:33
Mark Salsbery24-Apr-07 8:33 
Questiondatabase connection problem. Pin
david bagaturia23-Apr-07 21:26
david bagaturia23-Apr-07 21:26 
AnswerRe: database connection problem. Pin
Cedric Moonen23-Apr-07 21:43
Cedric Moonen23-Apr-07 21:43 
QuestionRe: database connection problem. Pin
David Crow24-Apr-07 3:09
David Crow24-Apr-07 3:09 
AnswerRe: database connection problem. Pin
Mark Salsbery24-Apr-07 8:34
Mark Salsbery24-Apr-07 8:34 
AnswerRe: database connection problem. Pin
Hamid_RT24-Apr-07 3:12
Hamid_RT24-Apr-07 3:12 
GeneralRe: database connection problem. Pin
david bagaturia24-Apr-07 19:29
david bagaturia24-Apr-07 19:29 
QuestionRe: database connection problem. Pin
David Crow25-Apr-07 2:51
David Crow25-Apr-07 2:51 
GeneralRe: database connection problem. Pin
Hamid_RT25-Apr-07 6:47
Hamid_RT25-Apr-07 6:47 
QuestionCFileDialog Pin
Try23-Apr-07 20:24
Try23-Apr-07 20:24 
QuestionRe: CFileDialog Pin
David Crow24-Apr-07 3:10
David Crow24-Apr-07 3:10 
AnswerRe: CFileDialog Pin
Try24-Apr-07 3:20
Try24-Apr-07 3:20 
QuestionRe: CFileDialog Pin
David Crow24-Apr-07 3:29
David Crow24-Apr-07 3:29 
AnswerRe: CFileDialog Pin
Try24-Apr-07 3:52
Try24-Apr-07 3:52 

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.