Click or drag to resize

ConneXionFindCompanyForm Method

Finds the Company Form.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindCompanyForm(
	ref CompanyForm CompanyForm
)

Parameters

CompanyForm
Type: ConneXionCompanyForm
The CompanyForm 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
  • PolicyIndex
  • FormCode
Examples
VB
Dim oConneXion As New ConneXion.ConneXion
Dim oResult As New ConneXion.ConneXionResult
Dim oCustomer As New ConneXion.CompanyForm

oCustomer.TAMUserName = "EXEC"
oCustomer.TAMPassword = "PSWD"
oCustomer.PolicyIndex = "GALAX-1-2001"

oCustomer.FormCode = "CF1"
oResult = oConneXion.FindCompanyForm(oCustomer)

If oResult.Success = False Then
    txtResult.Text = "FindCompanyForm is false" & vbCrLf & "Number: " & oResult.Number & vbCrLf & "Desc: " &
        oResult.Description & vbCrLf & "TAMErrorNumber: " & oResult.TAMErrorNumber & vbCrLf & "TAMErroDesc: " & oResult.TAMDescription
End If
See Also