I am using a PCI-GPIB to Communicate with my spectrum analyzer is there a way to get a screen shot of what I’m seeing on my spectrum analyzer into my labview program or maybe a separate file?
You need to use the :MMEM
TOR command to store the screen image to file. This will save it to the PSA's internal hard disk.
Example::MMEM
TOR
CR "C:\TEMP.GIF"
Then, to get it to your PC you would query the memory. E.G.: :MMEM
ATA? "C:\TEMP.GIF"
The manual has information on the format of the data that is returned from the DATA? command.