09-14-2007 04:35 PM
09-14-2007 04:38 PM
09-14-2007 05:02 PM
09-14-2007 05:04 PM
09-14-2007 05:39 PM - edited 09-14-2007 05:39 PM
Mrjazzitup wrote: 1024x768
Mine is 1400x1050, so there is clearly a bug in the windows scaling if you use that odd option to maintain aspect ratio.
Dennis gave you all the advice you need, but there are many other aspects to your code that would benefit from some simple detailing. I am sure your diagram could be simplified dramatically without any loss in functionality.
You seem to overestimate our capabilities. Your diagram is 2x5 screens big (10 screens!) and to look at a diagram written by somebody else, where I have no idea what it is supposed to do and what the reason is for each wire is is not trivial. First I need to endlessly scroll back and forth to follow wires, then probably triple-click a few to see where they go. Look at the picture below! I challenge any LabVIEW guru to immediately tell me what's connected to where and where the hidden wires go. (for example which of the three boolean wires in the bottom right connects to what terminal of the feedback node? :o).

For an example of code simplification, have a look at the "Rube" post taken from your code above.
LabVIEW is fun and easy and it should not take long to get the hang of it. I am sorry to hear that your teacher did not do a good job. Maybe you want to continue on your own and do some simpler fun program. If you get stuck, we will always be here to help. 🙂
Message Edited by altenbach on 09-14-2007 03:41 PM
09-14-2007 07:14 PM
09-14-2007 07:29 PM
09-15-2007 02:30 AM
09-15-2007 04:32 AM - edited 09-15-2007 04:32 AM
@Mrjazzitup wrote:
It looks like there is an embedded vi that it is looking for but can't find. The vi is looking for Write to Spreadsheet File (string).vi
This is a VI that only exists in LabVIEW 8.2 or higher. You have LabVIEW 8.0 so this did cannot downconvert. (LabVIEW 8.2+ has a polymorphic VI selector for "write to spreadsheet file" that allows for an array of strings).
This is no big deal. Just convert your array of strings to a spreadsheet string using "Array to Spreadheet string" with %s as format (see image). Then write the resulting plain string to a file using e.g. "write text file". You will have the same result. 🙂

Message Edited by altenbach on 09-15-2007 02:33 AM
09-15-2007 02:12 PM