Setup Example

image\head10.gif VB.NET

Dim Ret, Adr As Integer

Adr = 3  ' Destination device address

Ret = GpCrst(Adr)

 

image\head10.gif C

DWORD Ret, Adr;

Adr = 3; /* Destination device address */

Ret = GpCrst(Adr);

 

image\head10.gif C#

uint Ret, Adr;

Adr = 3; /* Destination device address */

Ret = gpib.Crst(Adr);

 

image\head10.gif Python

Ret, Adr = ctypes.c_ulong(), ctypes.c_ulong()

Adr.value = 3 # Destination device address

Ret.value = GpibPy.GpCrst(Adr)