I've created a remote interface for my PSA which controls many functions and dumps the current PSA screen to the C# form.
Is there a way to turn the active function readout on and off, just as when you press marker, span, freq, etc.
From other posts, I gather that you cannot remotely "press a key"
Thanks,
Den
Hello deninnh,
There isn't currently a way to do exactly what you're looking for. I would recommend collecting the information you need in your SCPI code through inquiry commands like
FREQ:START?
FREQ:CENT?
FREQ:SPAN?
for the start frequency, center frequency, and span. When you read back the instrument's response you can then log this data however is most convenient for your workflow. While it won't show up in your screenshots, you could perhaps record this information on your C# form or in a csv file.