Click or drag to resize

ConneXionUpdateNote Method

Used to Update the Note.

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

Parameters

Note
Type: ConneXionNote
Note object to Update

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.RecordNumber = "12"
oNote.EntityID = "BOOKR-1"
oNote.EntityType = "C"

oResult = oConneXion.FindNote(oNote)

If oResult.Success Then

    oNote.TAMUserName = "EXEC"
    oNote.TAMPassword = "PSWD"
    oNote.NoteDescription = oNote.NoteDescription & "Her birthday is Jan 17th"

    oResult = oConneXion.UpdateNote(oNote)

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

End If
See Also