thanks for ur reply. well i thought using mschart control but i am not sure how i can export the labview graph to vb. actually i m not too keen to plot the graph in vb rather just to export the graph from labview and display it.
labview supports vb so i thought may be this shud be possible.
thanks anyway.
i have written the following code in vb6 which opens the get data.vi and runs its. this vi acquires data a continuously plots a graph in its frontpanel.
Dim LViewApp As LabVIEW.Application
Dim vi As LabVIEW.VirtualInstrument
Dim vipath As String
Set LViewApp = CreateObject("LabVIEW.Application")
vipath = "C:\My Documents\LabView Program\get data.vi"
Set vi = LViewApp.GetVIReference(vipath)
Call vi.Call
Have you looked into using ActiveX? Here is a link to a Knowledge Base article about using a LabVIEW application in Visual Basic using ActiveX : Calling LabVIEW Applications from Visual Basic Using ActiveX
Let us know how these work for you.
-Nathan