search for: notesdatabase

Displaying 1 result from an estimated 1 matches for "notesdatabase".

2001 May 15
1
How to display bookmarks on Lotus Notes 5 - Here is the solution
...the bookmarks frame doesn't open when you click on Favourites or other 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 sa...