Click here to Skip to main content
15,915,032 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Where to initilaize a doc variable in the doc class? Pin
Ravi Bhavnani25-Jul-02 3:22
professionalRavi Bhavnani25-Jul-02 3:22 
AnswerRe: Where to initilaize a doc variable in the doc class? Pin
Tomasz Sowinski25-Jul-02 3:23
Tomasz Sowinski25-Jul-02 3:23 
AnswerRe: Where to initilaize a doc variable in the doc class? Pin
ns25-Jul-02 3:32
ns25-Jul-02 3:32 
QuestionHow to put the desktop into a device-context ? Pin
adara25-Jul-02 3:08
adara25-Jul-02 3:08 
AnswerRe: How to put the desktop into a device-context ? Pin
Tomasz Sowinski25-Jul-02 3:17
Tomasz Sowinski25-Jul-02 3:17 
GeneralRe: How to put the desktop into a device-context ? Pin
adara25-Jul-02 3:24
adara25-Jul-02 3:24 
GeneralRe: How to put the desktop into a device-context ? Pin
Tomasz Sowinski25-Jul-02 3:29
Tomasz Sowinski25-Jul-02 3:29 
AnswerRe: How to put the desktop into a device-context ? Pin
Mike Nordell25-Jul-02 14:12
Mike Nordell25-Jul-02 14:12 
Straight from the SDK sample Switcher:

if (hdc = CreateDC (TEXT("DISPLAY"), NULL, NULL, NULL))
{
    // Copy the desktop to a memory DC
    int xSize = GetSystemMetrics(SM_CXSCREEN);
    int ySize = GetSystemMetrics(SM_CYSCREEN);
    StretchBlt(memDC, 0, 0, destW, destH,
               hdc, 0, 0, xSize, ySize, SRCCOPY);
    DeleteDC(hdc);
}

GeneralSettings in Visual Studio.NET Pin
pankajdaga25-Jul-02 2:54
pankajdaga25-Jul-02 2:54 
GeneralRe: Settings in Visual Studio.NET Pin
Rick Crone25-Jul-02 10:52
Rick Crone25-Jul-02 10:52 
QuestionCPP file cannot be combined into MFC project? Pin
Ziban200025-Jul-02 2:39
Ziban200025-Jul-02 2:39 
AnswerRe: CPP file cannot be combined into MFC project? Pin
Anonymous25-Jul-02 2:45
Anonymous25-Jul-02 2:45 
GeneralOnUpdate and OnInitialUpdate Pin
ns25-Jul-02 1:56
ns25-Jul-02 1:56 
GeneralRe: OnUpdate and OnInitialUpdate Pin
Nish Nishant25-Jul-02 2:04
sitebuilderNish Nishant25-Jul-02 2:04 
GeneralRe: OnUpdate and OnInitialUpdate Pin
ns25-Jul-02 2:09
ns25-Jul-02 2:09 
GeneralRe: OnUpdate and OnInitialUpdate Pin
Ravi Bhavnani25-Jul-02 3:27
professionalRavi Bhavnani25-Jul-02 3:27 
GeneralBye bye... Pin
Ravi Bhavnani25-Jul-02 3:29
professionalRavi Bhavnani25-Jul-02 3:29 
GeneralRe: OnUpdate and OnInitialUpdate Pin
David Chamberlain25-Jul-02 5:35
David Chamberlain25-Jul-02 5:35 
Generalbiggest .NET problem Pin
Anonymous25-Jul-02 1:13
Anonymous25-Jul-02 1:13 
GeneralRe: biggest .NET problem Pin
Christian Graus25-Jul-02 1:52
protectorChristian Graus25-Jul-02 1:52 
GeneralRe: biggest .NET problem Pin
Renjith Ramachandran25-Jul-02 5:08
Renjith Ramachandran25-Jul-02 5:08 
GeneralRe: biggest .NET problem Pin
Mukkie26-Jul-02 5:40
Mukkie26-Jul-02 5:40 
Generalreturn TRUE Pin
Renjith Ramachandran25-Jul-02 1:07
Renjith Ramachandran25-Jul-02 1:07 
GeneralRe: return TRUE Pin
Nish Nishant25-Jul-02 1:36
sitebuilderNish Nishant25-Jul-02 1:36 
GeneralRe: return TRUE Pin
Renjith Ramachandran25-Jul-02 5:04
Renjith Ramachandran25-Jul-02 5:04 

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.