Click here to Skip to main content
15,914,111 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Unregister a COM object Pin
parths3-Oct-04 23:23
parths3-Oct-04 23:23 
GeneralCalling mfc dll from visual basic Pin
randynamics1-Oct-04 15:52
randynamics1-Oct-04 15:52 
GeneralRe: Calling mfc dll from visual basic Pin
ThatsAlok1-Oct-04 18:24
ThatsAlok1-Oct-04 18:24 
GeneralRe: Calling mfc dll from visual basic Pin
randynamics2-Oct-04 21:17
randynamics2-Oct-04 21:17 
GeneralRe: Calling mfc dll from visual basic Pin
Gary R. Wheeler2-Oct-04 12:49
Gary R. Wheeler2-Oct-04 12:49 
GeneralRe: Calling mfc dll from visual basic Pin
randynamics3-Oct-04 18:25
randynamics3-Oct-04 18:25 
GeneralUsing btimap resource from dll Pin
bigmirror1-Oct-04 14:28
bigmirror1-Oct-04 14:28 
GeneralRe: Using btimap resource from dll Pin
Andrzej Markowski1-Oct-04 16:43
Andrzej Markowski1-Oct-04 16:43 
Do the following steps:
CBitmap bmpYourBitmap; // your bitmap
CDC *pDC; // device context for painting
//
// 1. Create a memory device context:
CDC memDC;
memDC.CreateCompatibleDC(pDC);
//
// 2. Select your bitmap into <code>memDC</code>:
CBitmap *pOldBmp = memDc.SelectObject(&bmpYourBitmap);
//
// 3. Get the size of <code>bmpYourBitmap</code>:
BITMAP bm;
bmpYouBitmap.GetBitmap(&bm);
//
// 4. Paint the bitmap:
pDC->BitBlt(0,0,bm.bmWidth,bm.bmHeight,&memDC,0,0,SRCCOPY);
memDc.SelectObject(pOldBmp);

GeneralProblem with FindWindow Pin
Dev5781-Oct-04 14:25
Dev5781-Oct-04 14:25 
GeneralRe: Problem with FindWindow Pin
Jörgen Sigvardsson1-Oct-04 14:36
Jörgen Sigvardsson1-Oct-04 14:36 
Generalprotected constructor Pin
leonid dmsi1-Oct-04 12:23
leonid dmsi1-Oct-04 12:23 
GeneralRe: protected constructor Pin
alex.barylski1-Oct-04 16:12
alex.barylski1-Oct-04 16:12 
Generaltypedef for Function Pointer Pin
act_x1-Oct-04 10:59
act_x1-Oct-04 10:59 
GeneralRe: typedef for Function Pointer Pin
Gary R. Wheeler1-Oct-04 12:39
Gary R. Wheeler1-Oct-04 12:39 
GeneralRe: typedef for Function Pointer Pin
Jörgen Sigvardsson1-Oct-04 12:50
Jörgen Sigvardsson1-Oct-04 12:50 
GeneralRe: typedef for Function Pointer Pin
Michael Dunn1-Oct-04 14:03
sitebuilderMichael Dunn1-Oct-04 14:03 
GeneralRe: typedef for Function Pointer Pin
Gary R. Wheeler2-Oct-04 2:00
Gary R. Wheeler2-Oct-04 2:00 
GeneralDLL problem Pin
Larsson1-Oct-04 10:36
Larsson1-Oct-04 10:36 
GeneralRe: DLL problem Pin
ThatsAlok1-Oct-04 18:30
ThatsAlok1-Oct-04 18:30 
GeneralRe: DLL problem Pin
Larsson1-Oct-04 22:16
Larsson1-Oct-04 22:16 
General#define style templates and float Pin
J.B.1-Oct-04 9:15
J.B.1-Oct-04 9:15 
GeneralRe: #define style templates and float Pin
David Crow1-Oct-04 9:35
David Crow1-Oct-04 9:35 
GeneralRe: #define style templates and float Pin
vcplusplus1-Oct-04 10:26
vcplusplus1-Oct-04 10:26 
GeneralRe: #define style templates and float Pin
J.B.1-Oct-04 19:46
J.B.1-Oct-04 19:46 
QuestionHow slow is GDI? Pin
Budric B.1-Oct-04 6:13
Budric B.1-Oct-04 6:13 

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.