Setup Example

image\head10.gif VB.NET

Dim Ret, Adr, Stb As Integer

Adr = 3  ' Destination device address

Stb = 12  ' Output status

Ret = GpCese(Adr, Stb)

 

image\head10.gif C

DWORD Ret, Adr, Stb;

Adr = 3; /* Destination device address */

Stb = 12; /* Output status */

Ret = GpCese(Adr, Stb);

 

image\head10.gif C#

uint Ret, Adr, Stb;

Adr = 3; /* Destination device address */

Stb = 12; /* Output status */

Ret = gpib.Cese(Adr, Stb);

 

image\head10.gif Python

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

Adr.value = 3 # Destination device address

Stb.value = 12 # Output status

Ret.value = GpibPy.GpCese(Adr, Stb)