Returns the total number of errors and warnings
generated.
Syntax:
<lCount>= object.Count
Example
Set oWarnings = oEdiDoc.GetWarnings
For i = 1 To oWarnings.Count
Set oWarning = oWarnings.Warning(i)
List1.AddItem oWarning.Code & " " &
oWarning.Description
Next