PopupNotesDlg Method
- Last UpdatedNov 06, 2025
- 2 minute read
The PopupNotesDlg() method displays the Notes dialog to allow viewing and editing of work order, job, item and folders notes.
'Declaration
Public Shared Function PopupNotesDlg( _
ByVal notes As String, _
ByVal woID As String, _
ByVal operID As String, _
ByVal seqNo As Object, _
ByVal itemId As String, _
ByVal entId As Integer, _
ByVal verId As String, _
ByVal folderModId As String, _
ByVal fromFolders As Boolean, _
ByVal displayOnly As Boolean _
) As Boolean
public static bool PopupNotesDlg(
string notes,
string woID,
string operID,
object seqNo,
string itemId,
int entId,
string verId,
string folderModId,
bool fromFolders,
bool displayOnly
)
Parameters
- notes
- Required. Holds the existing notes.
- woID
- Optional. Holds the ID of the work order of the job whose notes are being displayed. This is required for work order or job notes. Otherwise, set this parameter to null.
- operID
- Optional. Holds the ID of the operation of the job or folder whose notes are being displayed. This is required for job or folder notes. Otherwise, set this parameter to null.
- seqNo
- Optional. Holds the sequence number of the operation of the job whose notes are being displayed. This is required for job notes. Otherwise, set this parameter to null.
- itemId
- Optional. Holds the ID of the item. This is required for item or folder notes. Otherwise, set this parameter to null.
- entId
Optional. Holds the entity ID. This is required for folder notes. Otherwise, set this parameter to -1.
- verId
- Optional. Holds the version ID. This is required for folder notes. Otherwise, set this parameter to null.
- folderModId
- Optional. Holds the folder mod ID. This is required for folder notes. Otherwise, set this parameter to null.
- fromFolders
- Optional. Holds a flag that, if set to true, indicates that the notes in the dialog folder notes.
- displayOnly
- Required. Holds a flag that, if set to true, disables the editing and appending of notes.
Return Value
Returns true only if the user changed notes and DisplayOnlyNotes is false. This
can be used to determine whether to refresh other controls.