Framework EDI Reference. Methods and Properties
ediTransport. Send

Sends the file based on all the destination information specified in the transport object.

Syntax:

Parameters:

Returns

Returns 1 if the operation is successful; otherwise the operation returns zero.

Example

Set oTransports = oEdiDoc.GetTransports
Set oTransport = oTransports.CreateTransport
oTransport.SetFTP
oTransport.Address = "255.255.255.255"
oTransport.Password = "YourPassword"
oTransport.User = "YourUserID"
oTransport.TargetPath = "inbound"
oTransports.Send

Samples