How come nGetResultSets doesn't want to return the InvoiceAmounts in this situation? It just returns a bunch of empty strings. Can nGetResultSets not return a decimal column as retItems or retJunk? Below is what I am trying to do. My InvoiceNos return fine because they are varchar in SAGE database. Dim getResultSetParams() As Object = {"InvoiceNo$", "InvoiceAmt$", retItems, retJunk, filter, "", ""} oLotSerialTransHistEntry.InvokeMethodByRef("nGetResultSets", getResultSetParams) Dim InvoiceNumbers() As String = getResultSetParams(2).Split(System.Convert.ToChar(352)) Dim InvoiceAmounts() As String = getResultSetParams(3).Split(System.Convert.ToChar(352))
↧