05-06-2010 03:10 AM
hi
i am having a container in parameters. Already there are 4 fields were available in that container. At present i want to add one more field to the container. This filed is getting from lab windows dll. So please tell me the procedure how to pass a value from lab windows to test stand and how to insert a field to the container.
Thanks
Regards
chenna
05-11-2010
02:20 PM
- last edited on
10-21-2024
10:20 AM
by
Content Cleaner
chenna,
You will need a custom data type in teststand that exactly matches the struct that you want to get from CVI. It sounds like you already have one, and just want to add a new field. You can do this two ways:
1) delete your existing type, and re-create it using the 'create data type' button on the CVI module pane
2) add the field to your existing type and enable struct passing for it on the Type Properties Dialog Box.
Please note that the struct passing information on the data type in TestStand must EXACTLY match the data that you are sending from CVI, so if you need to pass two different structs (sometimes with and sometimes without the extra value), your best bet is to create two types.
05-17-2010 10:14 PM
hi
Thanks for your answer. i tried with the way you proposed. it is working fine.