Click here to Skip to main content
15,891,633 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to call Jar files from Visual C++ Pin
Nikhil Trivedi26-Apr-07 1:43
Nikhil Trivedi26-Apr-07 1:43 
GeneralRe: How to call Jar files from Visual C++ Pin
David Crow26-Apr-07 2:32
David Crow26-Apr-07 2:32 
GeneralRe: How to call Jar files from Visual C++ Pin
Nikhil Trivedi26-Apr-07 2:02
Nikhil Trivedi26-Apr-07 2:02 
QuestionOwnerdraw tab [modified] Pin
iayd23-Apr-07 23:42
iayd23-Apr-07 23:42 
AnswerRe: Ownerdraw tab Pin
Hamid_RT24-Apr-07 3:09
Hamid_RT24-Apr-07 3:09 
QuestionActiveX on Thread Pin
CDRAIN23-Apr-07 22:58
CDRAIN23-Apr-07 22:58 
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 
Try this

CFont font;
VERIFY(font.CreateFont(
   12,                        // nHeight
   0,                         // nWidth
   0,                         // nEscapement
   0,                         // nOrientation
   FW_NORMAL,                 // nWeight
   FALSE,                     // bItalic
   FALSE,                     // bUnderline
   0,                         // cStrikeOut
   ANSI_CHARSET,              // nCharSet
   OUT_DEFAULT_PRECIS,        // nOutPrecision
   CLIP_DEFAULT_PRECIS,       // nClipPrecision
   DEFAULT_QUALITY,           // nQuality
   DEFAULT_PITCH | FF_SWISS,  // nPitchAndFamily
   "Arial"));                 // lpszFacename

m_cEdit.SetFont(&font);       //Object of the Edit Control


VIBIN

"Fool's run away,where angle's fear to tread"

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 
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 

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.