Hello Barry,
That is really a problem, in LabVIEW, we can only convert vi to the previous version, I have version 7.1 and so I can only convert to version 7.0 and you cannot open this too.
But I think that it's very easy to do what I'm trying to explain you.
Go to the cluster group in the functions pallete. Place an unbundle by name function in the diagram and connect it to the data that's comming out of the FFT Power spectrum vi - the pink (or watever) wire.
Click in the white part of it (it should contain something like f0), choose magnitude.
This is now an array that you can connect to the peak detector function.
Take care about the threshold and width parameters of the peak detector.
Take a look at your signal and decide the amplitude and width of the peaks you want to detect. The threshold is the amplitude above what you consider as a peak, the width is a little bit more complicated - to begin, 3 or 4 should be a good number if you signal is not too noisy - bigger widths will somehow do a kind of a low pass filtering to your signal.
The position output of your peak detector is an array of locations where your peaks were found.
Keep in mind you are now working in frequency domain and that position means something in the frequency domain.
The array you placed as input of the peak detector is an array of points starting in f0 and separated by df (the other elements of the cluster).
So to calculate the real value of the peaks, you have to multiply them by df and add them f0.
Sorry by the big text and sorry if I went too much in detail,
Hope it helps,
Paulo