06-01-2007 07:36 AM
06-01-2007 07:41 AM
What's the general format of the file?
For example, is it basically just a lot of values you want to plot on the Y axis, or is it a file of comma seperated values containing both X and Y data?
06-01-2007 08:22 AM
06-01-2007 08:22 AM
06-01-2007 08:24 AM
06-01-2007 08:27 AM
06-01-2007 08:39 AM
06-01-2007 08:41 AM
06-01-2007 09:12 AM
You're not going to like this.
I'm pretty sure the only way to do this is to parse the file manually. You will have to read it one line at a time and identify and discard the header information. Then, once you get to the real data, extracting the data values is a matter of parsing the string, looking for the spaces. This is actually the easy bit.
That should get you the raw data out as a 2D array which you can wire directly into a graph control.
06-01-2007 09:44 AM