11-04-2012 09:17 PM
Hi All,
I am developing an C# application to control Agilent DMM (Model 34410A) from a remote PC. And i am using IVI-Com drivers for this.
I was able to read the values from instrument when ever i call an API e.g. "dmm.Voltage.DCVoltage.Measure".
But i wanted to repeatedly read the values from instrument depending on the event triggered from user interface.
Can anyone please tell me whether any such API is readily available to continously read measurement values from the instrument to the PC?
11-05-2012 09:14 AM
A while loop is not part of any instrument api. That would be something you need to implement in your C# code.
11-05-2012 09:40 PM
Thank you very much for the reply Mr.Dennis.
I understood that while loop will not be part of many instrument API's.
But, is it a hard and fast rule to not to have such API?
I was trying to check whether any API is available to read the values from the instrument continously based on a trigger condition and also stop reading the values based on other trigger condition.
11-05-2012 11:14 PM
11-06-2012 12:20 AM
Thanks for your reply Mr. Dennis