Do you want to save a uidoc in an action button or want an agent to perform an operation, but the validation process prevents the uidoc from saving causing an error? This simple function will allow you to take care of this process.
Function IsUIDocSaved ( uidoc As notesUIdocument ) As Integer ' boolean
Const uidocSaveErr = 4411
Const msgNotSaved = "The document was not saved due to insufficient supplied data."
Const msgSaved = "The current document is saved."
On Error Resume Next
Call uidoc.Save
If Err <> 0 Then
If Err = uidocSaveErr Then
' saving uidoc is not completed by querysave event for validation purposes.
' which in turn will give the appropriate message
Print msgNotSaved
Else
Msgbox "Unexpected error: " & Chr$(10) & _
"Error No.: " & Err & " " & "Line: " & Erl & " " & Error$ & Chr$(10) & "In Module: " & "IsUIDocSaved"
End If
Err = 0
Else
IsUIDocSaved = True
Print msgSaved
End If
End Function
This was first published in July 2001
Disclaimer:
Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.