.
HCLSoftware Business Partner
Domino Consulting Services
CRUCIAL Notes Tools
+1
212-599-2048
Domino Consulting Services
CRUCIAL Notes Tools
Domino administration
Notes development
Chat now
.
EN - English
CN - 中文
JP - 日本語
DE - Deutsch
FR - Français
BR - Português
RU - Pу́сский
IT - Italiano
IN - हिन्दी
ES - Español
KR - 한국어
ID - Indonesia
NL - Dutch
TR - Türkçe
SA - العربية
SE - Svenska
NO - Norsk
PL - Polski
TH - ไทย
DK - Dansk
MY - Malay
PH - Filipino
GR - Ελληνικά
FI - Suomi
IL - עברית
IE - Gaeilge
CZ - Čeština
UA - Українська
RO - Română
VN - Tiếng Việt
BD - বাংলা
HU - Magyar
Need a Domino Consultant? Call NotesMail +1 212-599-2048
-
HCLSoftware Business Partner
LOTUSSCRIPT/COM/OLE CLASSES
Examples: CreateEntry method
1. This example creates an entry and inserts it into an empty outline.
Dim session As New NotesSession
Dim db As NotesDatabase
Dim outline As NotesOutline
Dim entry As NotesOutlineEntry
Set db = session.CurrentDatabase
'Gets the outline called emptyoutline
Set outline = db.GetOutline("emptyoutline")
'Creates a new outline entry called MyFirstEntry
'and adds it to the outline
Set entry = outline.Createentry("MyFirstEntry")
'Saves the outline with its new entry
Call outline.save()
2. This example creates a new outline entry and adds it to "myoutline" as the child of the first entry in the outline.
Dim session As New NotesSession
Dim db As NotesDatabase
Dim outline As NotesOutline
Dim entryA As NotesOutlineEntry
Dim entryB As NotesOutlineEntry
Set db = session.CurrentDatabase
Set outline = db.GetOutline("myoutline")
Set entryA = outline.GetFirst()
Set entryB = outline.Createentry("MyEntry",entryA,1,1)
Call outline.save()
3. This example creates a new outline entry and adds it to the outline as the first entry.
Dim session As New NotesSession
Dim db As NotesDatabase
Dim outline As NotesOutline
Dim entryA As NotesOutlineEntry
Dim entryB As NotesOutlineEntry
Set db = session.CurrentDatabase
Set outline = db.GetOutline("discussion")
Set entryA = outline.GetFirst()
Set entryB = outline.Createentry("MyEntry",entryA)
Call outline.save()
4. This example creates a new outline entry and adds it to the outline after the first entry at the top level.
Dim session As New NotesSession
Dim db As NotesDatabase
Dim outline As NotesOutline
Dim entryA As NotesOutlineEntry
Dim entryB As NotesOutlineEntry
Set db = session.CurrentDatabase
Set outline = db.GetOutline("myoutline")
Set entryA = outline.GetFirst()
Set entryB = outline.Createentry("MyEntry",entryA,1)
Call outline.save()
See Also
CreateEntry method
Feedback on
Help
or
Product Usability
?
Help on Help
All Help Contents
Feedback on
Help
or
Usability
?
Help on Help
All Help Contents