Click here to Skip to main content
15,902,299 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Multiple definition? Eh? Pin
Lord Kixdemp16-Sep-06 15:21
Lord Kixdemp16-Sep-06 15:21 
GeneralRe: Multiple definition? Eh? Pin
PJ Arends16-Sep-06 15:43
professionalPJ Arends16-Sep-06 15:43 
GeneralRe: Multiple definition? Eh? Pin
Lord Kixdemp16-Sep-06 19:43
Lord Kixdemp16-Sep-06 19:43 
QuestionIterator Invalidation? iVec.erase(it) Pin
Yonggoo15-Sep-06 13:24
Yonggoo15-Sep-06 13:24 
AnswerRe: Iterator Invalidation? iVec.erase(it) Pin
tanvon malik15-Sep-06 14:59
tanvon malik15-Sep-06 14:59 
QuestionRe: Iterator Invalidation? iVec.erase(it) Pin
prg_desh15-Sep-06 18:38
prg_desh15-Sep-06 18:38 
QuestionFont in list box Pin
Oliver12315-Sep-06 12:52
Oliver12315-Sep-06 12:52 
AnswerRe: Font in list box Pin
tanvon malik15-Sep-06 14:49
tanvon malik15-Sep-06 14:49 
First of all create a font then set it for listbox
creation of font is easy through CreateFontIndirect()
1: create a member variable of CFont ( mFont )in your class
2: then create font.

LOGFONT lf;
memset(&lf, 0, sizeof(lf));
lf.lfWeight = FW_NORMAL;
lf.lfQuality = PROOF_QUALITY;
lf.lfWidth = 20;
lf.lfHeight = 24;
mFont.CreateFontIndirect(&lf);

3: Now you can select that font in listbox

CFont* ptFont = &mFont:
m_ListTrans.SetFont(ptFont, TRUE)


Tanvon
the brain behind ...

I Blog here

GeneralRe: Font in list box Pin
Oliver12315-Sep-06 16:55
Oliver12315-Sep-06 16:55 
AnswerRe: Font in list box Pin
Hamid_RT15-Sep-06 20:29
Hamid_RT15-Sep-06 20:29 
QuestionMFC - Scroll Bars Pin
StevenWalsh15-Sep-06 10:42
StevenWalsh15-Sep-06 10:42 
AnswerRe: MFC - Scroll Bars Pin
Chris Losinger15-Sep-06 11:02
professionalChris Losinger15-Sep-06 11:02 
AnswerRe: MFC - Scroll Bars Pin
Alex Boyce15-Sep-06 11:04
Alex Boyce15-Sep-06 11:04 
QuestionThe ripple effect Pin
Waldermort15-Sep-06 8:59
Waldermort15-Sep-06 8:59 
AnswerRe: The ripple effect Pin
Chris Losinger15-Sep-06 9:50
professionalChris Losinger15-Sep-06 9:50 
AnswerRe: The ripple effect Pin
Maximilien15-Sep-06 10:04
Maximilien15-Sep-06 10:04 
GeneralRe: The ripple effect Pin
Waldermort15-Sep-06 10:20
Waldermort15-Sep-06 10:20 
GeneralRe: The ripple effect Pin
Chris Losinger15-Sep-06 10:22
professionalChris Losinger15-Sep-06 10:22 
GeneralRe: The ripple effect Pin
Waldermort15-Sep-06 10:40
Waldermort15-Sep-06 10:40 
GeneralRe: The ripple effect Pin
Chris Losinger15-Sep-06 11:00
professionalChris Losinger15-Sep-06 11:00 
GeneralRe: The ripple effect Pin
Waldermort15-Sep-06 11:04
Waldermort15-Sep-06 11:04 
QuestionSharing Data between object. Pin
mostafa_pasha15-Sep-06 8:54
mostafa_pasha15-Sep-06 8:54 
AnswerRe: Sharing Data between object. Pin
David Crow15-Sep-06 9:18
David Crow15-Sep-06 9:18 
AnswerRe: Sharing Data between object. Pin
ThatsAlok16-Sep-06 1:11
ThatsAlok16-Sep-06 1:11 
GeneralRe: Sharing Data between object. Pin
mostafa_pasha16-Sep-06 1:47
mostafa_pasha16-Sep-06 1:47 

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.