Search results

  1. A

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

    Oh that's interesting would it be possible to call an "Action" within that code block? For example if i have an action called "Process Order" Sub someSub() return "Process Order" end Sub
  2. 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