Framework EDI Reference. Methods and Properties
ediWarnings. Warning

Returns a warning object at a certain position in the list.

Syntax:

Parameters:

Returns:

Returns an object of type FREDI.ediWarning.

Example

Set oWarnings = oEdiDoc.GetWarnings
For i = 1 To oWarnings.Count
   Set oWarning = oWarnings.Warning(i)
   List1.AddItem oWarning.Code & " " & oWarning.Description
Next