What you�re asking is actually fairly simple. The part you may be having the most trouble understanding is how to get your application to run with a �Start� button rather than LabVIEW�s �Run� arrow on the tool bar. I�ll describe this based on LabVIEW 7, earlier versions should be the same for all of this.
To get your application to run with a start button instead of the run arrow, you�ll have to set the main VI up to run when opened. To do this, open the VI and navigate to the �File� menu and select �VI Properties�. From the �Category� pull down list, select �Execution� and check the box �Run when opened� and click OK and save the VI. Now whenever the VI is opened, it will automatically run. You�ll also need to setup the display subVI to show it�s
front panel when called. Do this by going into the VI properties of the data display subVI and selecting the �Window Appearance� category and click the �Customize� button. In this dialog, place a check mark in the �Show front panel when called� and �Close afterwards if originally closed�. Click �OK� twice and save.
The attached example does what you have described. It uses the event structure to watch for button clicks. The Event structure was introduced in LabVIEW 6.1, so if you have an earlier version, this won�t work for you.
Open the example and before you click any buttons, open the block diagram and turn on execution highlighting (the little light bulb on the toolbar). You�ll the diagram kind of gray out, showing the VI is running and waiting for you to do something. Now with the diagram visible, go back to the front panel and click the �Start� button and watch the diagram. The subVI is called and displays the data from the main VI. The subVI also uses an event structure
to watch for the front panel to be closed. This just keeps it open until you want it closed.
Play around with this a bit and you should get the hang of how it works. Let us know if you have any more questions.
Ed

Ed Dickens - Certified LabVIEW Architect
Lockheed Martin Space
Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.