I am using the example provided in the on-line help to call an SP with two input and one output parameters as follows;
' [VB.NET]
Dim outputValue as Integer
Dim resultSet As DataTable = ActionProcedures.MyStoredProcedure(1, 2, ByRef outputValue)
with the SelfServicing adapter, VS.net doesn't like the ByRef value specificed. How can I retrieve the output values using an action SP with an output parameter?