I was missing many controls and VIs, so I couldn't simulate your problem, but I will make a few comments. Hopefully they will help.
First, your front panel is great. It is well organized, makes good use of tabs, colors and frames and is pleasant to look at. Your block diagram, however, is another matter. It is very large, has no comments and is hard to follow. Crucially, it also has a very small number of subVIs. While this may not be what is causing your problem, having subVIs is important in many ways, the most important of which, in this case, is that subVIs can be debugged individually, so if your problem is localized to a certain place, it would be easier to find. I don't believe having subVIs would help you memory-wise, because as far as I know LV loads all VIs into memory when they are opened, so the same amount of code will take the same toll on the computer. It will make a difference if you're using a VI in several places within your code. So, the first advice - more subVIs and more comments.
Second, is the problem always caused by the last "fix" or is it caused by something specific? If you change the last "fix" and do something different, will it make a difference or will it still crash? If it still crashes, it's possible LV compiles the code every time you make a change and the second you make the last change it compiles the entire code and runs into trouble with something. I can suggest two things for you to try: see if you have any unnecassary structures initialized (for example, a DBL takes 8 bytes, so think how much an array of many DBLs or many clusters would take) and try clearing them. Try doing this on another computer, one that has the same setup as your own (mine doesn't). BTW, how much memory do you have on that computer? I think LV should be able to hold your VI in memory, but maybe that is your problem?
Last suggestion, try mass compiling or force compiling (ctrl+shift+run). I don't know if it will work on a broken VI, but maybe it will help.
I can also suggest that you read the LabVIEW user manual. Also, try searching this site and google for LabVIEW tutorials. There is a lot of information and programming practices which can (and should) be learned from these sources. You can also contact your local NI office and join one of their courses. In addition, I suggest you read
the LabVIEW style guide.
___________________
Try to take over the world!