How to make graphics?

I′m doing a project in visual studio.net 2003, language c++ and i want to make some graphics.

Can someone tell me the best way to do it and maybe help me with a example?

Thanks

[313 byte] By [Boceta] at [2008-1-7]
# 1
A broad question like this deserves a broad answer: use the Graphics class.
nobugz at 2007-10-2 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 2

I don′t know how to use Graphics class, can you show me one example?

I want to make graphics with items that are in a listview...

it′s possible to export those values to excel and then make the graphic and show it in visual studio?

thanks

Boceta at 2007-10-2 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 3
Anything is possible, you might want to focus on what you know about programming in .NET. You'll need to hone your skills a bit if you never used the Graphics class before. Visit your local library and check out an introductory book on Windows Forms or Graphics programming. Trying to show you an example before you do this would be a waste of your (and my) time.
nobugz at 2007-10-2 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 4

I never worked with graphics class but my skills with .net are good, but graphics class it′s a "way" that i never try.

If you can help me i′ll be grateful to you, if not no problem, thanks anyway

Boceta at 2007-10-2 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 5

Hi, Boceta,

Nobugz is really an expert in .Net graphics (If you have read some of his posts in this forum.), and I think if you make your question a little more specific, he can always give a valuable answer.

And if you are really confident with your .Net skills,

please try to begin your .Net graphics programming with the following tutorial.

http://www.codeproject.com/books/1861004990.asp

Althrough it's in C#, you can learn the libraries and objects which could be used in your Graphics programming.

Hope this helps,

Regards

YuGuo–MSFT at 2007-10-2 > top of Msdn Tech,Windows Forms,Windows Forms General...
# 6

i have two collections, paper and pens. Each one of this collections have elements inside, i show them in a treeview(collections), and the elements in a listview. For example, the collection pens is populated with 2 elements, blue and red pens, each one of this items have a field that is the amount.

I want to make a graphic that shows for example, how many blue and red pens i have.

thanks for your help!

Boceta at 2007-10-2 > top of Msdn Tech,Windows Forms,Windows Forms General...