N
nor
To osmor
Форма: "temp1".
Поле, которое содердит текст логов: "history", Text, Computed when composed, Value: history.
Каждый раз, при активировании действия (Sub Click)? в поле "history" добавляется некоторая текстовая информация, новые сообщения добавляются с новой строки причем.
Форма: "temp1".
Поле, которое содердит текст логов: "history", Text, Computed when composed, Value: history.
Код:
(Declaration)
Dim session As NotesSession
Dim ws As NotesUIWorkspace
Dim db As NotesDatabase
Dim doc As NotesDocument
Dim uidoc As NotesUIDocument
Dim item As NotesDocument
Sub Initialize
Set session = New NotesSession
Set ws = New NotesUIWorkspace
Set db = session.CurrentDatabase
End Sub
Sub Postopen(Source As Notesuidocument)
Set uidoc = ws.CurrentDocument
Set doc = uidoc.Document
End Sub
Sub Click(Source As Button)
Dim new_msg As String
new_msg = "сообщение 1"
doc.history = doc.history(0) + Chr(10) + new_msg
new_msg = "сообщение 2"
doc.history = doc.history(0) + Chr(10) + new_msg
new_msg = "сообщение 3"
doc.history = doc.history(0) + Chr(10) + new_msg
Call doc.Save(True, True)
End Sub
Каждый раз, при активировании действия (Sub Click)? в поле "history" добавляется некоторая текстовая информация, новые сообщения добавляются с новой строки причем.