Click here to Skip to main content
15,917,645 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralTo Nish, our Buster Boy Pin
Alexandru Savescu24-Apr-02 22:59
Alexandru Savescu24-Apr-02 22:59 
GeneralRe: To Nish, our Buster Boy Pin
James T. Johnson24-Apr-02 23:07
James T. Johnson24-Apr-02 23:07 
GeneralRe: To Nish, our Buster Boy Pin
Nish Nishant24-Apr-02 23:36
sitebuilderNish Nishant24-Apr-02 23:36 
GeneralRe: To Nish, our Buster Boy Pin
Nish Nishant24-Apr-02 23:34
sitebuilderNish Nishant24-Apr-02 23:34 
GeneralRe: To Nish, our Buster Boy Pin
Alexandru Savescu24-Apr-02 23:45
Alexandru Savescu24-Apr-02 23:45 
GeneralRe: To Nish, our Buster Boy Pin
Nish Nishant24-Apr-02 23:59
sitebuilderNish Nishant24-Apr-02 23:59 
GeneralFonts Pin
24-Apr-02 22:33
suss24-Apr-02 22:33 
GeneralRe: Fonts Pin
Rickard Andersson2024-Apr-02 22:41
Rickard Andersson2024-Apr-02 22:41 
Here ya have an example (but in Win32 API):

// create a static control
HWND text = ::CreateWindow("Static", "My title", WS_CHILD | WS_VISIBLE |
SS_CENTER | SS_NOTIFY, 10,115, 355,40, firstclass2, (HMENU)ID_STATIC, hInstance,NULL);

Create a font (Arial)
HFONT font2 = ::CreateFont(38, 0, 0, 0, FW_BOLD, TRUE, 0, 0, 0, 0, 0, 0, 0, "Arial");

// Put it on the static control
::SendDlgItemMessage(wndParent, ID_STATIC, WM_SETFONT, (WPARAM)font2, 0L);

------------------------------------
Rickard Andersson, Suza Computing
ICQ#: 50302279
I'm from the winter country SWEDEN!

------------------------------------
GeneralRe: Fonts Pin
l a u r e n24-Apr-02 22:57
l a u r e n24-Apr-02 22:57 
GeneralRe: Fonts Pin
Tom Archer24-Apr-02 23:06
Tom Archer24-Apr-02 23:06 
GeneralRe: Fonts Pin
Tom Archer24-Apr-02 22:53
Tom Archer24-Apr-02 22:53 
GeneralTranslateAccelerator Pin
thundercatzlair24-Apr-02 21:59
thundercatzlair24-Apr-02 21:59 
GeneralRe: TranslateAccelerator Pin
Prem Kumar24-Apr-02 22:55
Prem Kumar24-Apr-02 22:55 
GeneralRe: TranslateAccelerator Pin
thundercatzlair25-Apr-02 6:43
thundercatzlair25-Apr-02 6:43 
GeneralCRectTracker problem Pin
chen24-Apr-02 20:02
chen24-Apr-02 20:02 
GeneralRe: CRectTracker problem Pin
Tom Archer24-Apr-02 20:35
Tom Archer24-Apr-02 20:35 
GeneralRe: CRectTracker problem Pin
chen24-Apr-02 21:00
chen24-Apr-02 21:00 
GeneralRe: CRectTracker problem Pin
Tom Archer24-Apr-02 21:22
Tom Archer24-Apr-02 21:22 
GeneralRe: CRectTracker problem Pin
chen24-Apr-02 22:41
chen24-Apr-02 22:41 
GeneralRe: CRectTracker problem Pin
Tom Archer24-Apr-02 23:00
Tom Archer24-Apr-02 23:00 
GeneralRe: CRectTracker problem Pin
chen24-Apr-02 23:36
chen24-Apr-02 23:36 
GeneralRe: CRectTracker problem Pin
Tom Archer24-Apr-02 23:57
Tom Archer24-Apr-02 23:57 
GeneralRe: CRectTracker problem Pin
Tom Archer25-Apr-02 0:37
Tom Archer25-Apr-02 0:37 
GeneralRe: CRectTracker problem Pin
Tom Archer25-Apr-02 16:25
Tom Archer25-Apr-02 16:25 
GeneralRe: CRectTracker problem Pin
Tom Archer24-Apr-02 23:07
Tom Archer24-Apr-02 23:07 

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.