![]() | |
ConneXionFindFinanceableTransactions Method |
Namespace: ConneXion
public ConneXionResult FindFinanceableTransactions( ref GeneralTransTransaction FinTransaction )
Dim oConneXion As New ConneXion.ConneXion Dim ofin As New ConneXion.GeneralTrans.Transaction Dim oResult As ConneXion.ConneXionResult Dim ofin1 As New ConneXion.GeneralTrans.Transaction ofin.TAMUserName = "EXEC" ofin.TAMPassword = "PSWD" ofin.EntityId = "REMCO-1" ofin.EntityType = "C" oResult = oConneXion.FindFinanceableTransactions(ofin) If oResult.Success Then MessageBox.Show("Find Financeable Transactions was Successful. " & oResult.Description & ".") dgrdResult.DataSource = ofin.Transactions Else txtResult.Text = "Number: " & oResult.Number & vbCrLf & "Desc: " & oResult.Description & vbCrLf & "TAMErrorNumber: " & oResult.TAMErrorNumber & vbCrLf & "TAMErroDesc: " & oResult.TAMDescription End If