10-13-2009 10:39 AM
Hello All,
I'm finishing up another component of our test system, and running into a little bit of a problem. We basically have an array of bools and a corresponding list of messages to be appended to an error message, if any of the bools are false. I then want to spit this error message string out to the user via a dialog, with a direct message such as, "Copy the sentence below into some database table:".
The test code works fine, but I am unable to select the sentence in the dialog to copy, Labview seems to have locked that possibility out. Is there any way to get around this? I'd prefer to not make it a string indicator on the frontpanel, although I suppose that's an option.
Test VI attached below.
Thanks!
10-13-2009 11:05 AM
You do not have to use a dialog box. You can configure a sub VI to behave like like a dialog box. An example of this is the "Three Button Dialog VI" in the dialog palette. Modify this to fit your own need.
Ps remember to use save as then saving first time. And do not save in the vil.lib dir
10-13-2009 11:47 AM
10-13-2009 11:58 AM
Jim,
I modified your code to work. you had a simple error in your logic. Read up on auto indexing it is a very fast way to get around arrays of indeterminate length as you can see from the code attached.
10-13-2009 12:19 PM
10-13-2009 01:45 PM