Dear all,
I am using agent to send the reminder through user mailbox. But mail that sent once open by user it pop out message “A Stored Form cannot contain computed Subform”. What caused this to happen? Below is the script that written.
Set doc=mdb.Createdocument
doc.Form = “Memo”
doc.SendTo = receiver
doc.Subject = "Task Start Date Reminder for Site ID : " & id & " - Task : " & Sb & " (Scheduled start date : " & Cstr(idoc.Project_RevStart(0)) & “)”
et rtitem = New NotesRichTextItem( doc, “Body” )
Call rtitem.AppendText("Please be informed that the " & Sb & " for Site Name : " & proj & " ( " & id & " ) is scheduled to start on " & Cstr(idoc.Project_RevStart(0)) & ". " & Chr$(13) & Chr$(13) & “Thank you”)
Call rtitem.AddNewLine( 2 )
Call doc.Send(True)
Please help, thank you