hello! I have an agent for notes client like that:Sub Initialize
Dim s As New NotesSession
Dim lodb As NotesDatabase
Dim loWs As New NotesUIWorkspace
Dim loReporte As NotesDocument
Dim rtS As NotesRichTextStyle
Set loDb = loWs.CurrentDatabase.Database
Set loReporte=loDb.CreateDocument()
Set rtS = s.CreateRichTextStyle
rtS.PassThruHTML = True
Dim rt As New NotesRichTextItem(loReporte,"datagrid")
loReporte.FORM="prueba"
Call rt.AppendText("Detalles:")
Call rt.AddNewline(1,True)
Call rt.AppendStyle(rtS)
Call rt.AppendText("<B>Prueba de html</B>")
loReporte.Save True,False
Call loWs.EditDocument(False,loReporte)
End Sub
and I have a Prueba form with a datagrid RT field.
This agent show a document like that:
Detalles:
Prueba de html
without passthru html!!!
Any body help me please!
Thank you in advance
Guillermo Villanueva