Set GPIB = CreateObject("objVISA.VII")
If GPIB Is Nothing Then
MsgBox "Could not create GPIB object"
Exit Sub
Else
GPIB.InterfaceName = "GPIB0"
End If
I have two questions about the above source code.
1. What is the meaning of "objVISA.VII"? Why should Creatobject ("objVISA.VII")
2. What can I find the explanation about "GPIB0"?
Thank you.
Windows 2000, Visual Basic 6.0,
And the intention of the source code is "'check the instrument is available"