04-25-2007 10:37 AM
04-26-2007 01:34 AM
The easiest way I can think to do this is to embed a Microsoft Web browser component in your C++ form.
Then on the server, publish the VI that you want using the Web Publishing tool (Tools>>Web Publishing Tool) This will create a web page that will allow you to view and control the VI in question.
Then when you initialize your C++ app, just navigate the web control in your c++ form to the right web page. I think that the browser control's method that you need to call is WebBrowser::Navigate2 ( <url> )
Here are the downsides:
It won't look totally embedded in the C++ app, because you will see a web page background and an extra menu.
You will also need to explicitly request control through a menu when the VI is loaded in your C++ app.
You will need the run-time engine installed on any client that wants to do this.
If none of these issues bother you, this might be a solution for you.
04-26-2007 08:41 AM
04-26-2007 09:37 AM
04-26-2007 10:35 AM
04-26-2007 10:59 AM
04-30-2007 05:30 PM