Click here to Skip to main content
15,891,607 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello,

I am new in c# windows application. I want to develop simple windows application. Input from Oscilloscope as a real time time and it shows real time graph and this graph value will be store in excel format. Could you please help me on this.

Thank you.

What I have tried:

want a real time graph and store in excel format.
Posted
Updated 13-Dec-16 17:50pm

1 solution

You're not going to get a real-time graph like you get on a scope. You can get the data from the scope using whatever library comes with the scope, if any. You can then graph that data using whatever graphing library you want but you're not going to get anywhere near the speed required to get a real-time update of that graph.

As for Excel, you can snapshot your data as you want and export that to an Excel sheet, and setup a graph in workbook if you want. Look into the OpenXML SDK for that. Again, this is not going to be a "real time" data export.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900