Click or drag to resize

ConneXionFindVendor Method

Finds the Vendor.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindVendor(
	ref Vendor oVendor
)

Parameters

oVendor
Type: ConneXionVendor
Vendor object to Find

Return Value

Type: ConneXionResult
ConneXionResult.
Remarks

Required Fields

  • TAMUserName
  • TAMPassword
  • TAMCentralAgency - only if agency is on AppliedOnline
  • LicenseKey - only if agency is an Agency of Vendor
  • EntityID
Examples
VB
Dim oConneXion As New ConneXion.ConneXion
Dim oResult As New ConneXion.ConneXionResult
Dim oVendor As New ConneXion.Vendor

oVendor.TAMUserName = "EXEC"
oVendor.TAMPassword = "PSWD"
oVendor.EntityID = "ABCSUP1"

oResult = oConneXion.FindVendor(oVendor)

If oResult.Success = False Then
  txtResult.Text = "FindVendor is false. " & oResult.Description & oResult.TAMDescription
Else
  txtResult.Text = "FindVendor is successful. " & oResult.Description & oResult.TAMDescription
End If
See Also