Slide 13
Slide 13 text
を、保存できなくなった文書で、調べると…
Dim ss As New NotesSession
Dim db As New NotesDatabase(“", “")
Dim doc As NotesDocument
Dim maxitem$, maxlength As Integer
If Not db.Isopen Then db.Open "", ""
Set doc = db.Getdocumentbyunid(“")
ForAll item In doc.items
If item.Issummary Then
If maxlength < item.Valuelength Then
maxlength = item.Valuelength
maxitem = item.name
End If
End If
End ForAll
Print maxitem, maxlength