Click here to Skip to main content
15,896,359 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Writing a .html file Pin
Russell'10-Sep-07 2:39
Russell'10-Sep-07 2:39 
Questionfile search problem Pin
david bagaturia10-Sep-07 1:38
david bagaturia10-Sep-07 1:38 
AnswerRe: file search problem Pin
Cedric Moonen10-Sep-07 1:59
Cedric Moonen10-Sep-07 1:59 
GeneralRe: file search problem Pin
david bagaturia10-Sep-07 3:51
david bagaturia10-Sep-07 3:51 
GeneralRe: file search problem Pin
Cedric Moonen10-Sep-07 4:34
Cedric Moonen10-Sep-07 4:34 
GeneralRe: file search problem Pin
david bagaturia10-Sep-07 19:37
david bagaturia10-Sep-07 19:37 
QuestionFont & BkColor Pin
josip cagalj10-Sep-07 1:16
josip cagalj10-Sep-07 1:16 
AnswerRe: Font & BkColor Pin
Nishad S10-Sep-07 1:31
Nishad S10-Sep-07 1:31 
josip cagalj wrote:
how I can set bigger font to my list control,


You can create font object (member variable) and use SetFont() API of ListCtrl


josip cagalj wrote:
how to set background color to an a dialog


Map the WM_CTLCOLOR and write,

HBRUSH hbr = CDialog::OnCtlColor(pDC, pWnd, nCtlColor);
if( nCtlColor == CTLCOLOR_DLG )
{
hbr = (HBRUSH) GetStockObject( BLACK_BRUSH ); // or m_brushDlg.GetSafeHandle();
}
return hbr;

- NS -

GeneralRe: Font & BkColor Pin
josip cagalj10-Sep-07 1:55
josip cagalj10-Sep-07 1:55 
GeneralRe: Font & BkColor Pin
Nishad S10-Sep-07 2:09
Nishad S10-Sep-07 2:09 
QuestionRe: Font & BkColor Pin
josip cagalj10-Sep-07 3:34
josip cagalj10-Sep-07 3:34 
QuestionReading data from Folder [modified] Pin
shakumar_2210-Sep-07 0:57
shakumar_2210-Sep-07 0:57 
AnswerRe: Reading data from Folder Pin
Nishad S10-Sep-07 1:32
Nishad S10-Sep-07 1:32 
AnswerRe: Reading data from Folder Pin
David Crow10-Sep-07 5:35
David Crow10-Sep-07 5:35 
AnswerRe: Reading data from Folder Pin
david bagaturia10-Sep-07 19:43
david bagaturia10-Sep-07 19:43 
QuestionAbout IntelliSense Pin
GauranG Shah10-Sep-07 0:53
GauranG Shah10-Sep-07 0:53 
AnswerRe: About IntelliSense Pin
baerten10-Sep-07 2:42
baerten10-Sep-07 2:42 
QuestionGeneral Questions Pin
rajaratk10-Sep-07 0:21
rajaratk10-Sep-07 0:21 
AnswerRe: General Questions Pin
Russell'10-Sep-07 0:30
Russell'10-Sep-07 0:30 
AnswerRe: General Questions Pin
Matthew Faithfull10-Sep-07 0:32
Matthew Faithfull10-Sep-07 0:32 
AnswerRe: General Questions Pin
Russell'10-Sep-07 0:38
Russell'10-Sep-07 0:38 
GeneralRe: General Questions Pin
jhwurmbach10-Sep-07 2:20
jhwurmbach10-Sep-07 2:20 
JokeRe: General Questions Pin
Russell'10-Sep-07 2:28
Russell'10-Sep-07 2:28 
JokeRe: General Questions Pin
jhwurmbach10-Sep-07 2:30
jhwurmbach10-Sep-07 2:30 
GeneralRe: General Questions Pin
Russell'10-Sep-07 2:35
Russell'10-Sep-07 2:35 

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.