Type | Description | |||
Index as Variant | A long expression that indicates the index of line requested | |||
String | A string expression that specifies the message's line. |
The following sample prints the entire message's content:
With ibx(i) For j = 0 To .Count - 1 Debug.Print .Line(j) Next End With