Click or drag to resize

ConneXionFindProducer Method

Used to Find a Producer.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindProducer(
	ref Producer oProducer
)

Parameters

oProducer
Type: ConneXionProducer
oProducer data 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 oProducer As New ConneXion.Producer
oProducer.TAMUserName = "EXEC"
oProducer.TAMPassword = "PSWD"
oProducer.TAMCentralAgency = "DEMOAG1"
oProducer.LicenseKey = "1234567  1"
oProducer.EntityID = "CJH"
oResult = oConneXion.FindProducer(oProducer)
If oResult.Success = False Then
  MessageBox.Show("FindProducer is false")
Else
  MessageBox.Show("FindProducer is successful")
End If
See Also