Try OpenEdge Now
skip to main content
Web Services
Developing a .NET Client to Consume OpenEdge SOAP Web Services : Developing the VB.NET client application : Processing the data from a TABLE parameter
 

Processing the data from a TABLE parameter

This example shows how you might process data from a TABLE parameter:
' Loop through the rows to obtain some of the column values
Dim i As Integer
Dim OrderNum As Integer
Dim OrderStatus As String
Dim TotalDollars As Decimal

For i = 0 To WS_OrderDetails.Length - 1
    OrderNum = WS_OrderDetails(i).OrderNum
    OrderStatus = WS_OrderDetails(i).OrderStatus
    TotalDollars = WS_OrderDetails(i).TotalDollars
Next i