StartSocketServer Method - neoVI API
int _stdcall icsneoStartSockServer(int hObject, int iPort);Public Declare Function icsneoStartSockServer Lib “icsneo40.dll” (ByVal hObject As Integer, ByVal iPort As Integer) As Integer[DllImport(“icsneo40.dll”)] public static extern int icsneoStartSockServer(int hObject, int iPort);Examples
icsneoStartSockServer(hObject, iPort);bStatus = icsneoStartSockServer(m_hObject, iPort)) '// start the socket serveriStatus = icsNeoDll.icsneoStartSockServer(m_hObject, Convert.ToInt32(txtServerPort.Text));Last updated