Hi
I am looking at the NetworkVariable example that ships with MS 8.1 Professional, "Basic.2005".
In the BufferedWriter.2005 project, to plot values to the WaveformGraph the following code is used:
Invoke(new EventHandler(delegate{ sampleWaveformGraph.PlotYAppend(values); }));Why don't you simply call the method on the instance of the WaveformGraph?:
sampleWaveformGraph.PlotYAppend(values);Thanks
Adam