Link to home
Start Free TrialLog in
Avatar of pgmerLA
pgmerLA

asked on

Initializing GDI++ in MFC/ATL application

sort of project: win32
using MS VS 2008 on MS XP.
I have attached sample data.

Lets use the closing price and date for the price chart.
and for the histogram: upvolume should be above the line and the down volume should be below the line.

Thanks again.
OCENY.txt
Avatar of SunnyDark
SunnyDark
Flag of Israel image

OK So first we'll start with creating a new Win32 Application project :
Visual c++ => Win32 => Win32 Project

Lets call the project GDIGraph so that we are on the same page here...

Now we need to add the required headers and libraries for the GDI plus :
Find you main file GDIGraph.cpp  and add the following at the top of the file right after the #include lines:
#pragma comment(lib,"gdiplus.lib")
#include <gdiplus.h>
using namespace Gdiplus;

Open in new window


Now if you will try to compile the project at this point (try it) you will get a bunch of errors... To get rid of them, open the file stdafx.h , find the line that says:
 #define WIN32_LEAN_AND_MEAN

Open in new window

and comment it. Now you should be able to compile the project.

Now lets add the GDI initialization staff.

Back to the GDIGraph.cpp file, find the line that says
// Global Variables:

Open in new window

This is where we will define our global variables as well...
Add the following two line to define GDI plus token and input:
GdiplusStartupInput gdiplusStartupInput;
ULONG_PTR			gdiplusToken;

Open in new window

Now find the InitInstance function and add BEFORE ShowWindow the following:
Now find the _tWinMain function and add at the end of the function BEFORE return (int) msg.wParam; the following:
GdiplusShutdown(gdiplusToken);

Open in new window

Now compile everything and if there are no errors then we are done with this step and we have working application with GDIplus support.
Attached is the final image of this step.
 User generated image
ASKER CERTIFIED SOLUTION
Avatar of SunnyDark
SunnyDark
Flag of Israel image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of pgmerLA
pgmerLA

ASKER

Avatar of pgmerLA

ASKER

Is there a way to contact directly trough the site withoutposting through the comment box?
Also, I gave you the highest rating I could, but it rated at 9.2