action element

  1. A

    how can I call an action (element) from the code block (element)

    For example it seems possible to access elements of a collection in a code block Dim i As Integer For i = 0 To col1.Rows.Count - 1 outText += col1.Rows.Item(i).Item("Order number") Next i But what if i want to do something ore complex like call an action within th Dim i As Integer For i...
Top