How to show VC++ created waveforms on Browser
-
Hello, I am using VC++ & my application shows some wave-forms like sine wave & square wave. Here I want to show VC++ waveforms on the browser. So which tool I need to integrate with my application? How can I show my waveforms on the Browser? If I click on Browser UI buttons, according to that wave from should take from my VC++ application & show it on the browser. Thankx in adavnce, Awating experts reply, - Ramesh.
-
Hello, I am using VC++ & my application shows some wave-forms like sine wave & square wave. Here I want to show VC++ waveforms on the browser. So which tool I need to integrate with my application? How can I show my waveforms on the Browser? If I click on Browser UI buttons, according to that wave from should take from my VC++ application & show it on the browser. Thankx in adavnce, Awating experts reply, - Ramesh.
It depends somewhat if you are using MFC or not. I think you could make it an
OCX
. Start with anATL/Com
project (if you need MFC, then check its checkbox), then insert aFull control
into the project. It will give you aOnDraw()
etc function in which you can draw the waveforms. However this may not be the only way or the easiest. this is this. -
It depends somewhat if you are using MFC or not. I think you could make it an
OCX
. Start with anATL/Com
project (if you need MFC, then check its checkbox), then insert aFull control
into the project. It will give you aOnDraw()
etc function in which you can draw the waveforms. However this may not be the only way or the easiest. this is this. -
thanx, I am using MFC , but how can I show same waveforms on the browser without ocx or ATL/COM? is there HTML or Java applet supports? If supports then how to do it?