|
|
|
|
|
- Characteristics of the send operation
- Retrieving the message on the server
NetSendBuffer (Function) In french: NetEnvoieBuffer Transmits a character string to an FTP (File Transfer Protocol) or RPC (Remote Procedure Call) server powered by WINDEV. Note: To enable or disable this function on an FTP/RPC server, use NetServerOption. ConnectFTP is int
ConnectFTP = NetConnect("148.61.125.245", FTPServer, "GUEST", "")
...
NetSendBuffer(ConnectFTP, "Coming soon")
Syntax
NetSendBuffer(<Connection ID> , <String to Send> [, <Additional information>])
<Connection ID>: Integer Connection identifier (returned by NetConnect). <String to Send>: Character string Text that must be sent to the server. <Additional information>: Optional integer Additional information added to the string. Remarks Characteristics of the send operation The string is send via the Windows message WM_COPYDATA(74). Retrieving the message on the server To retrieve the string sent and the additional information on the server, you must intercept the event 74 via Event (see the full example). The _EVE.lParam variable points to a structure with the following format: GetString is Structure
Wdata is int
ISize is int
pInfo is int
END
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|