Displaying 1 result from an estimated 1 matches for "notesdocu".
2001 May 15
1
How to display bookmarks on Lotus Notes 5 - Here is the solution
...ther folders
on the left side.
Solution:
Create a Memo in Notes
Go to the Body field and select Create/Hotspot/Button
In the lower half, select Script and paste in this code
Sub Click(Source As Button)
Dim db As New NotesDatabase("","BOOKMARK.NSF")
Dim doc As NotesDocument
Set doc = db.GetProfileDocument("settings")
doc.ClientPageLast = 84
doc.ClientPagePinned = 1
doc.ClientPageWidth = 221
Call doc.Save(True,True)
End Sub
Now save the memo as draft and and open it again. Press the button. Now yo...