Skip to content

Instantly share code, notes, and snippets.

@lonelydimple
Last active December 10, 2015 21:38
Show Gist options
  • Save lonelydimple/4496108 to your computer and use it in GitHub Desktop.
Save lonelydimple/4496108 to your computer and use it in GitHub Desktop.
PRR from DOMINO
Call rtitem.AppendText( "To: " + PRdoc.obligee(0) )
Call rtitem.AddNewLine(2)
Call rtitem.AppendText( "Re: " + PRdoc.bondNumber(0))
Call rtitem.AddNewLine(2)
theMsgDatePart = ""
If PRdoc.IssuedDt2(0) <> "" Then theMsgDatePart = "on "+ PRdoc.IssuedDt2(0)
Call rtitem.AppendText( "The above bond was issued "+ theMsgDatePart +" covering:")
Call rtitem.AddNewLine(2)
Call rtitem.AppendText(PRdoc.Description(0))
Call rtitem.AddNewLine(2)
Call rtitem.AppendText( "Please provide us with")
Call rtitem.AppendText( " the requested information regarding the status of the contract." )
Call rtitem.AddNewLine(2)
Call rtitem.AppendText( "Please respond at the Merchants Bonding website at ... ")
Call rtitem.AddNewLine(2)
Call rtitem.AppendText( "https://secure.merchantsbonding.com/progress.nsf/ReportAccess/"+PRdoc.AccessNumber(0)+"?OpenDocument")
Call rtitem.AddNewLine(2)
Call rtitem.AddTab(7)
Call rtitem.AppendText( "Yours very truly," )
Call rtitem.AddNewLine(2)
Call rtitem.AddTab(7)
Call rtitem.AppendText(PRdoc.underwriter(0))
Call rtitem.AddNewLine(2)
Call rtitem.AppendText( "Merchants Bonding Company (Mutual) hereby releases the architect or")
Call rtitem.AppendText( " engineer supplying the information contained on this form from any and")
Call rtitem.AppendText( " all liability what so ever which might in any way result from the " )
Call rtitem.AppendText( " accuracy or inaccuracy of the information requested and" )
Call rtitem.AppendText( " supplied by this form." )
Call rtitem.AddNewLine(2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment