03-28-2007 11:00 AM
03-28-2007 12:18 PM
03-29-2007 07:18 AM
Hi Wiwah,
To be able to turn your program into an executable is pretty straight forawrd. there are plenty of instructions in the help menu, but the basic straegy in LabVIEW is to create a project, import the files you have created into the project, and then build it into an executable. This is all explained indepth in the help menu and online in the developer zone. Below is a link you may find helpful.
http://zone.ni.com/devzone/cda/tut/p/id/3303
With regards to the taskbar question, what Jeremy has provided is the core concept of how to manipulate VI properties. I have enclosed a basic VI which outputs a random number percentage to the title bar of the VI. You can implement this basic structure into your VI and hopefully output the statistics you wish to display. This will work fine whether your application is developed into an executable or not.
I am unsure from your query exactly what you wish to display, but if it is an altering numeric percentage, this method should be supplementary. If however you wish to display an altering graphic (such as a graph for example), this will be significantly more difficult. If this is the case, I will have a think and see what I can come up with. Also, if you do wish to minimise your application to the system tray, again, let me know and I will have a think.
Best regards and enjoy!
Rob
NI Applications Engineer UK & Ireland
04-04-2007 11:22 AM
04-05-2007 06:37 AM
Hi Wiwah
Unfortunately, it is not possible to append anything to the Title Bar other than a string (or a converted numeric). If you were to try and modify the icon next to the title, you also wouldn't have any luck. Although you can modify the Icon of any VI during the build stage, once it is turned into an executable, it cannot be edited. Therefore, you couldn't update the icon when the VI runs
You can write the code such that it would run on startup and then close. You can select the VI to run on startup as a property in the Build Executable menu. you could then simply write in your code that the VI would close immediately. The front panel title could then be updated, but only with a new string or converted numeric..
I hope this helps, sorry it's not the answer you werer hoping for! 🙂
Best wishes in your continued LabVIEW programming.
Many thanks
Rob
04-05-2007 07:37 AM
04-05-2007 08:22 AM
04-05-2007 08:35 AM
Wiwah
The only way it might have been possible to save the array as a picture, was by placing it inside a blank picture control. unfortunately though, the array is not saved as part of the actual picture. Any copying and pasting therfore does not copy the array object, only the picture placeholder. I believe the only way you could get round this is to take a screenshot of the array and then edit and save it in Paint. not sure if that will be any use to you though??
Hope this helps
Longshots are the makings of great programs
Best wishes
Rob