Click or drag to resize

ConneXionFindNote Method

Used to Find the Note.

Namespace:  ConneXion
Assembly:  ConneXion (in ConneXion.dll) Version: 2020.0
Syntax
public ConneXionResult FindNote(
	ref Note Note
)

Parameters

Note
Type: ConneXionNote
Note 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
  • EntityType
  • RecordNumber
Examples
VB
Dim oConneXion As New ConneXion.ConneXion
Dim oNote As New ConneXion.Note
Dim oResult As ConneXion.ConneXionResult

oNote.TAMUserName = "EXEC"
oNote.TAMPassword = "PSWD"
oNote.EntityID = "BOOKR-1"
oNote.EntityType = "C"
oNote.RecordNumber = "10"

oResult = oConneXion.FindNote(oNote)

If oResult.Success Then
    MessageBox.Show("Find Note is successful")
    txtResult.Text = oResult.Description
Else
    txtResult.Text = "Number: " & oResult.Number & vbCrLf & "Desc: " &
     oResult.Description & vbCrLf & "TAMErrorNumber: " & oResult.TAMErrorNumber & vbCrLf & "TAMErroDesc: " & oResult.TAMDescription
End If
See Also