08-13-2009 09:15 AM
I am just starting to use the Veristand evaluation copy to see if it can do what I need it to do. It seems very customizable, and I was trying to create custom workspace controls through Labview. I would like to get things like radio buttons, lists and drop down menus into the workspace to control my model. I tried simply taking one of the numeric controls and replacing it with one of the previously mentioned controls, but it gave me an error saying that they were unsupported. It seems like I would be able to do this using the Free Label Template, but I'm not quite sure how to do that. I was able to find a custom indicator example (the min/max one), but was unable to find anything involving custom controls. Are there any examples or tutorials I could look at? How would I go about making some of those Labview controls into things I could use in the Veristand Workspace?
-Eric
Solved! Go to Solution.
08-17-2009 09:46 AM
Hi eric, I assume you find this http://zone.ni.com/devzone/cda/epd/p/id/6236 (Min/Max Indicators). To make one that is a control you can simply change the numeric indicator to a numeric control and swap out the read value VI that is in the diagram with write value VI that is in the NI VeriStand pallete.
08-17-2009 01:25 PM
I have tried doing this, but every time I open up the VI it searches for the sub VIs and gives me a warning. I ignore it because it was able to find all of then, just in different locations. Once I change everything I save it just like normal. When I put it in the veristand directory and try to bring it into the workspace it gives me an error that it cannot find all the sub VIs. Do I need to put everything in a library file? How would I do that?
-Eric
08-17-2009 03:14 PM
08-17-2009 06:37 PM
Eric,
Do you mean it's searching for the VIs that make up your new control? If so, are you putting all your subVIs in the Display Templates Directory? ([Documents and Settings]\All Users\Documents\National Instruments\VeriStand\Display Templates)
If you're receiving the error that it can't find lvhook.dll, be sure to link to the version in [Program Files]\National Instruments\VeriStand 2009\data
Do either of these work for you?
08-18-2009 08:58 AM
I am simply modifying the min max VI to set instead of display the value. It all saves correctly in Labview and I am doing a save as -> save entire hierarchy to a .llb file. I put it in the templates folder and it shows up in Veristand. When I trie to drag it into the workspace, I get the error attached. My VI is also attached.
-Eric
08-18-2009 10:20 PM
Hi erric, I have some answers for your issue.
1. I attached a zip file that contains your control renamed and build a project in it. You should be able to unzip it, check the build specificiation and make sure the output destination is the C:\Documents and Settings\All Users\Documents\National Instruments\VeriStand\Display Templates. Trigger a build on this and you should get EricHettlerSample - Radio.vi and EricHettlerSampleControlSupport.llb in there. Once you have this run a workspace you will be able to drop the EricHettlerSample - Radio control from the control list.
2. For the explanation. I think when you do a save as on the min-max example you download from the web LabVIEW cross link the vis that is in the llb with the one in the vi.lib. So doing a save as will not work. What will work is that you create a project and setup a source distribution to build the custom control. These are the steps I take based on your attached file:
As a rule you always want to create a project to build a custom control, since Save As will not always worked with the LabVIEW VI linkage in NI VeriStand.
To create a completely base custom control project what you do is:
I hope this helps, let me know if it still does not work for you.
Also if you still bothered by the error messages that shows up you might want to clean up C:\Documents and Settings\All Users\Documents\National Instruments\VeriStand\Screens directory since this directory is where NI VeriStand caches all the controls you drop in the workspace. So if you have a control that cannot be loaded delete all vis in this directory should remove the bad vis.
08-19-2009 10:38 AM
That worked. Thanks.
-Eric