|
||||
First, you'll want to show the variables and execution details with this LotusScript command:
Call varshow(variableName)
This line will run a subroutine called "varshow":
Sub varshow(fieldval As String)
Print |<SCRIPT LANGUAGE="JavaScript">|
Print |alert('| & fieldval & |');|
Print |</SCRIPT>|
End Sub
Note: The LotusScript print command creates a single line of HTML. These code lines create an HTML page that includes one JavaScript pop-up 'alert.' The final result is very similar to the msgbox("...").
Finally, use this subroutine to display the status:
if backenddoc is Nothing then
varshow("Doc was not found")
End if
Do you have comments on this tip? Let us know.
This tip was submitted to the SearchDomino.com tip library by member Stan Uptagrafft. Please let others know how useful it is via the rating scale below. Do you have a useful Lotus Notes/Domino technical tip or code snippet to share? Submit it to our monthly tip contest and you could win a prize.
This was first published in July 2009