04-23-2008 06:35 AM
04-23-2008 06:47 AM - edited 04-23-2008 06:48 AM
Hi 2716jag,
do you need a special format for your data? If not you can use the "Write to spreadsheet file.vi".
Mike
04-23-2008 01:30 PM
04-26-2008 11:36 PM
yeah i got that, now im creating one menu, using "run time menu edit" i 've created a menu with items, in that menu if i select one item it should open corresponding VI. how can i do this.
Thanks and Regards
Jagan
04-27-2008 11:14 PM
04-28-2008 12:00 AM
04-28-2008 01:25 AM
Probably you need to have a different independant loop looking for the events. For this you may need to use Q structure as well, so that you can define a Q outside both loops, add elements to Q as and when the menu is selected, while the other loop works according to the Q elements it gets to remove.
Hope that helps !
04-28-2008 01:40 AM
Pls ignore my prev post, I cud not finish edit within 10 mins as req by the forum rule...
If you are not able to access a VI front panel at all when another VI is called by the first VI, then probably the issue is that the VI properties is set to be Modal. Right click on the VI icon on the right top corner and select VI Properties. Under Window Appearance, you can click on Customise button and ensure the VI is not Modal (and Custom is selected). Before this, you need to ensure the calling VIs are also not set to Modal (I think if you set it to dialog, it will be Modal by def. So don't use that as well). If any of the parent VI is set to Modal and a subsequent child VI is in non-modal mode, then you will not be able to access the child VI front panel when called and may end up with forcing the program to close.
Probably you may also need to have a different independant loop looking for the events. For this you may need to use Q structure as well, so that you can define a Q outside both loops, add elements to Q as and when the menu is selected within the loop for menu events, while the other loop works according to the Q elements it gets to remove.
Hope that helps !
04-28-2008 02:09 AM - edited 04-28-2008 02:09 AM

05-01-2008 02:48 AM