Visual Studio 2005 - Diagram

  • Thread starter Thread starter Magnus Flisberg
  • Start date Start date
M

Magnus Flisberg

Best programmer,

I have a file with alot of numbers. Example: 10%, 30%, 99% and so on. I
want to draw a simple graph and also use time. How do I manage this in
Visual Studio? either C# or vb.net. Any start ideas? Maybe make a
picture of it, png?

Thoughts are warmly welcome!

Regards,
Magnus.
 
Hello Magnus,

Read your file (System.IO.File class) for numbers, one to another, and then
try to parse to int (Convert.ToInt32/Int32.TryParse). After u got the num
just show in as the progress of your graph

MF> Best programmer,
MF>
MF> I have a file with alot of numbers. Example: 10%, 30%, 99% and so
MF> on. I want to draw a simple graph and also use time. How do I manage
MF> this in Visual Studio? either C# or vb.net. Any start ideas? Maybe
MF> make a picture of it, png?
MF>
MF> Thoughts are warmly welcome!
MF>
MF> Regards,
MF> Magnus.
---
WBR,
Michael Nemtsev [C# MVP] :: blog: http://spaces.live.com/laflour

"The greatest danger for most of us is not that our aim is too high and we
miss it, but that it is too low and we reach it" (c) Michelangelo
 
Back
Top