![]() | |
ConneXionFindCustomer Method |
Namespace: ConneXion
Dim oCustomer As New ConneXion.Customer Dim oConneXion As New ConneXion.ConneXion Dim oResult As ConneXion.ConneXionResult oCustomer.LicenseKey = "123456 1" oCustomer.CustomerID = "ABBOJO1" oCustomer.TAMUserName = "EXEC" oCustomer.TAMPassword = "PSWD" oCustomer.TAMCentralAgency = "DEMOAG1" oResult = oConneXion.FindCustomer(oCustomer) If oResult.Success = True Then txtID.Text = oCustomer.CustomerID Else txtResult.Text = "Number: " & oResult.Number & vbCrLf & "Desc: " & oResult.Description & vbCrLf & "TAMErrorNumber: " & oResult.TAMErrorNumber & vbCrLf & "TAMErroDesc: " & oResult.TAMDescription End If