02-23-2001 03:22 AM
03-01-2001 04:50 PM
06-10-2008 01:46 PM
06-11-2008 07:53 AM
06-11-2008 09:25 AM
06-11-2008 10:01 AM
06-12-2008 02:12 PM
06-12-2008 03:00 PM - edited 06-12-2008 03:01 PM
06-13-2008 04:20 PM
Hi Steve80,
I did a search for the error message and it doesn't look like a case of having to initialize anything with VISA, more to do with initializing the ActiveX Component.
In Delphi, it looks like you might have to call CoInitialize() first.
Something like: (from http://www.delphifaq.com/faq/delphi_windows_API/f511.shtml)
initialization
CoInitialize(nil); // <-- manually call CoInitialize()
finalization
CoUnInitialize; // <-- free memory
With regards to seeing the Eval message on the control, this is because you downloaded the Measurement Studio evaluation version from our webpage. The CWVISA control is part of Measurement Studio and in order to get the full version, you would have to purchase Measurement Studio.
06-13-2008 11:08 PM