| You can use the Call statement to call API functions provided in Wsock32.dll and ws2_32.dll.  Below is a paste from Windows SDK documentation: The Windows Sockets send function sends data on a connected socket.
 int send (  SOCKET s,  const char FAR * buf,  int len,  int flags  ); Parameters
 s [in] A descriptor identifying a connected socket.
 .
 buf
 [in] A buffer containing the data to be transmitted.
 .
 len
 [in] The length of the data in buf.
 .
 flags
 [in] Specifies the way in which the call is made.
 .
 Import Library ws2_32.lib Header File winsock2.h
 : Hello,  : Is any way of using Windows Socket functionality from the Scheduler?  : For Example: I already have a Socket.Listiner application : and I need to use Socket.SendData "keyword"
 : from the scheduler at scheduled time to server application to process all
 : requests.
 : Thanks, : Gennadiy
 
 
 |