Click here to Skip to main content
15,887,214 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
Generalproblem with ListCtrl display Pin
Angel Kid31-Dec-03 15:14
Angel Kid31-Dec-03 15:14 
GeneralRe: problem with ListCtrl display Pin
Michael Dunn31-Dec-03 19:50
sitebuilderMichael Dunn31-Dec-03 19:50 
Generalgoing to post antialiasing article Pin
Roman Nurik31-Dec-03 12:56
Roman Nurik31-Dec-03 12:56 
Generalmenu bar Pin
brian scott31-Dec-03 12:21
brian scott31-Dec-03 12:21 
GeneralUsing SetFont() on a button control Pin
shultas31-Dec-03 11:32
shultas31-Dec-03 11:32 
GeneralRe: Using SetFont() on a button control Pin
Roman Nurik31-Dec-03 12:58
Roman Nurik31-Dec-03 12:58 
GeneralRe: Using SetFont() on a button control Pin
Kelly Herald31-Dec-03 17:28
Kelly Herald31-Dec-03 17:28 
GeneralRe: Using SetFont() on a button control Pin
Rajesh match31-Dec-03 19:56
Rajesh match31-Dec-03 19:56 
LOGFONT logFont;

logFont.lfHeight = 12;
logFont.lfWidth = 0;
logFont.lfWeight = FW_BOLD;
logFont.lfItalic = FALSE;
logFont.lfUnderline = FALSE;
logFont.lfStrikeOut = FALSE;
logFont.lfEscapement = 0;
logFont.lfOrientation = 0;
lstrcpy(logFont.lfFaceName, _T("Arial"));

m_font.CreateFontIndirect(&logFont); // Create the font.
GetDlgItem(IDC_BUTTON)->SetFont(&m_font);
Declare CFont in .h file
GeneralRe: Using SetFont() on a button control Pin
shultas1-Jan-04 9:57
shultas1-Jan-04 9:57 
GeneralRe: Using SetFont() on a button control Pin
J.B.1-Jan-04 18:10
J.B.1-Jan-04 18:10 
GeneralIntercepting Mouse Clicks Pin
__Cerb31-Dec-03 10:06
__Cerb31-Dec-03 10:06 
GeneralRe: Intercepting Mouse Clicks Pin
alex.barylski31-Dec-03 10:17
alex.barylski31-Dec-03 10:17 
GeneralRe: Intercepting Mouse Clicks Pin
__Cerb31-Dec-03 10:26
__Cerb31-Dec-03 10:26 
QuestionUsing CList and collections properly? Pin
Cloaca31-Dec-03 9:01
Cloaca31-Dec-03 9:01 
AnswerRe: Using CList and collections properly? Pin
Cloaca5-Jan-04 4:21
Cloaca5-Jan-04 4:21 
GeneralNMAKE, Implicit Rules and unknown file types Pin
Bryan Anslow31-Dec-03 8:06
Bryan Anslow31-Dec-03 8:06 
GeneralDAO in SDK app (supports MFC) Pin
Jay231-Dec-03 6:19
Jay231-Dec-03 6:19 
GeneralRe: DAO in SDK app (supports MFC) Pin
Selvam R1-Jan-04 19:21
professionalSelvam R1-Jan-04 19:21 
GeneralCompare sign of numbers in C++ Pin
Gagnon Claude31-Dec-03 6:19
Gagnon Claude31-Dec-03 6:19 
GeneralRe: Compare sign of numbers in C++ Pin
Dominik Reichl31-Dec-03 6:59
Dominik Reichl31-Dec-03 6:59 
GeneralRe: Compare sign of numbers in C++ Pin
Stefan Pedersen1-Jan-04 7:00
Stefan Pedersen1-Jan-04 7:00 
GeneralRe: Compare sign of numbers in C++ Pin
Tim Smith31-Dec-03 10:41
Tim Smith31-Dec-03 10:41 
GeneralResizing controls in MFC Pin
Rafael Fernández López31-Dec-03 5:43
Rafael Fernández López31-Dec-03 5:43 
GeneralRe: Resizing controls in MFC Pin
Michael Dunn31-Dec-03 7:30
sitebuilderMichael Dunn31-Dec-03 7:30 
GeneralChange the selection style of a listbox on the fly Pin
shultas31-Dec-03 4:44
shultas31-Dec-03 4:44 

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.