Click here to Skip to main content
15,928,763 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralQuestion about new operator. Pin
George230-Jan-03 23:16
George230-Jan-03 23:16 
GeneralRe: Question about new operator. Pin
Hans Ruck31-Jan-03 1:00
Hans Ruck31-Jan-03 1:00 
GeneralRe: Question about new operator. Pin
George231-Jan-03 3:16
George231-Jan-03 3:16 
GeneralRe: Question about new operator. Pin
Hans Ruck31-Jan-03 3:35
Hans Ruck31-Jan-03 3:35 
GeneralRe: Question about new operator. Pin
George231-Jan-03 4:28
George231-Jan-03 4:28 
GeneralRe: Question about new operator. Pin
Anonymous31-Jan-03 5:18
Anonymous31-Jan-03 5:18 
GeneralRe: Question about new operator. Pin
George231-Jan-03 17:52
George231-Jan-03 17:52 
GeneralWIN32 SDK : GetWindowDC works, GetDCEx doesn't Pin
30-Jan-03 23:11
suss30-Jan-03 23:11 
I am implementing a skin based tool kit.
When repainting the frame of a window,
i catch WM_NCPAINT message then get window's
device context :

case WM_NCPAINT:
{
  HDC hdc = NULL;
  if( wparam==1 )
    // it returns a valid DC
    hdc = GetWindowDC( hwnd );
  else
    // it always returns NULL !!!
    hdc = GetDCEx( hwnd, (HRGN)(wparam), DCX_WINDOW|DCX_INTERSECTRGN );

  // custom frame painting
  paintFrame( hdc );

  ReleaseDC( hwnd, hdc );  
}

The 'GetDCEx line' is taken from MSDN.

I use MSVC++7 under winXP
Thanks for your help
GeneralReplacing and resizing of the controls in formview to bestfit of Monitor on change system resolution Pin
sulaxan30-Jan-03 22:11
sulaxan30-Jan-03 22:11 
QuestionAny good references? Pin
dsuratman30-Jan-03 20:57
dsuratman30-Jan-03 20:57 
AnswerRe: Any good references? Pin
LittleYellowBird30-Jan-03 23:51
LittleYellowBird30-Jan-03 23:51 
AnswerRe: Any good references? Pin
Abbas_Riazi31-Jan-03 0:13
professionalAbbas_Riazi31-Jan-03 0:13 
AnswerRe: Any good references? Pin
Lhenno Ferrari31-Jan-03 0:22
Lhenno Ferrari31-Jan-03 0:22 
GeneralRe: Any good references? Pin
Lhenno Ferrari31-Jan-03 1:01
Lhenno Ferrari31-Jan-03 1:01 
GeneralToolbar Pin
satyavasu30-Jan-03 19:52
satyavasu30-Jan-03 19:52 
GeneralRe: Toolbar Pin
dsuratman30-Jan-03 20:59
dsuratman30-Jan-03 20:59 
Generalsdi app starts minimized Pin
bryce30-Jan-03 19:00
bryce30-Jan-03 19:00 
GeneralRe: sdi app starts minimized Pin
ROK_RShadow30-Jan-03 19:17
ROK_RShadow30-Jan-03 19:17 
GeneralRe: sdi app starts minimized Pin
sulaxan31-Jan-03 20:07
sulaxan31-Jan-03 20:07 
GeneralRe: sdi app starts minimized Pin
bryce1-Feb-03 13:28
bryce1-Feb-03 13:28 
Generalconst help Pin
ROK_RShadow30-Jan-03 18:03
ROK_RShadow30-Jan-03 18:03 
GeneralRe: const help Pin
Chris Losinger30-Jan-03 18:11
professionalChris Losinger30-Jan-03 18:11 
GeneralRe: const help Pin
Christian Graus30-Jan-03 18:13
protectorChristian Graus30-Jan-03 18:13 
GeneralRe: const help Pin
Chris Losinger30-Jan-03 18:17
professionalChris Losinger30-Jan-03 18:17 
GeneralRe: const help Pin
Christian Graus30-Jan-03 18:22
protectorChristian Graus30-Jan-03 18:22 

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.