Click here to Skip to main content
15,884,353 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Cliking button programmatically Pin
prasad_som19-Feb-07 2:05
prasad_som19-Feb-07 2:05 
AnswerRe: Cliking button programmatically Pin
Hamid_RT19-Feb-07 5:09
Hamid_RT19-Feb-07 5:09 
AnswerRe: Cliking button programmatically Pin
Roger Stoltz18-Feb-07 21:43
Roger Stoltz18-Feb-07 21:43 
GeneralRe: Cliking button programmatically Pin
rp_suman18-Feb-07 23:49
rp_suman18-Feb-07 23:49 
Questioncreating MSI package using vs 2005 Pin
Manjunath S18-Feb-07 20:38
Manjunath S18-Feb-07 20:38 
QuestionChanging color of CStatic text. How ? Pin
sakthimuthu18-Feb-07 19:47
sakthimuthu18-Feb-07 19:47 
AnswerRe: Changing color of CStatic text. How ? Pin
Nibu babu thomas18-Feb-07 19:52
Nibu babu thomas18-Feb-07 19:52 
AnswerRe: Changing color of CStatic text. How ? Pin
prasad_som18-Feb-07 19:57
prasad_som18-Feb-07 19:57 
Use OnCltColor.
HBRUSH CMylg::OnCtlColor(CDC* pDC, CWnd* pWnd, UINT nCtlColor) 
{
  HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor);

  if (pWnd->GetDlgCtrlID() == IDC_STATIC)
  {
    pDC->SetTextColor(RGB(255, 34, 0));
    pDC->SetBkMode(TRANSPARENT);
  }
  return hbr;
}




GeneralRe: Changing color of CStatic text. How ? Pin
sakthimuthu18-Feb-07 20:14
sakthimuthu18-Feb-07 20:14 
GeneralRe: Changing color of CStatic text. How ? Pin
prasad_som18-Feb-07 20:18
prasad_som18-Feb-07 20:18 
GeneralRe: Changing color of CStatic text. How ? Pin
Hamid_RT18-Feb-07 20:41
Hamid_RT18-Feb-07 20:41 
GeneralRe: Changing color of CStatic text. How ? Pin
prasad_som18-Feb-07 21:41
prasad_som18-Feb-07 21:41 
GeneralRe: Changing color of CStatic text. How ? Pin
sakthimuthu18-Feb-07 20:51
sakthimuthu18-Feb-07 20:51 
GeneralRe: Changing color of CStatic text. How ? Pin
Hamid_RT18-Feb-07 20:59
Hamid_RT18-Feb-07 20:59 
QuestionHow to use MFC class's object in static mehtod of a class Pin
Mushtaque Nizamani18-Feb-07 19:24
Mushtaque Nizamani18-Feb-07 19:24 
AnswerRe: How to use MFC class's object in static mehtod of a class Pin
prasad_som18-Feb-07 19:49
prasad_som18-Feb-07 19:49 
GeneralRe: How to use MFC class's object in static mehtod of a class Pin
Mushtaque Nizamani18-Feb-07 20:09
Mushtaque Nizamani18-Feb-07 20:09 
AnswerRe: How to use MFC class's object in static mehtod of a class Pin
prasad_som18-Feb-07 20:13
prasad_som18-Feb-07 20:13 
Questionhow to know the staus of cyberoam client Pin
sudhir.marni18-Feb-07 19:21
sudhir.marni18-Feb-07 19:21 
QuestionI want to change key into gujarati font can anybody help? [modified] Pin
Ritesh_Promact18-Feb-07 18:33
Ritesh_Promact18-Feb-07 18:33 
QuestionCalculating Age in days Pin
Charles Covington18-Feb-07 14:50
Charles Covington18-Feb-07 14:50 
AnswerRe: Calculating Age in days Pin
Christian Graus18-Feb-07 15:18
protectorChristian Graus18-Feb-07 15:18 
AnswerRe: Calculating Age in days Pin
Waldermort18-Feb-07 15:37
Waldermort18-Feb-07 15:37 
AnswerRe: Calculating Age in days Pin
David Crow18-Feb-07 16:24
David Crow18-Feb-07 16:24 
AnswerRe: Calculating Age in days Pin
#realJSOP19-Feb-07 0:17
mve#realJSOP19-Feb-07 0:17 

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.