Displaying 1 result from an estimated 1 matches for "clientpagepin".
2001 May 15
1
How to display bookmarks on Lotus Notes 5 - Here is the solution
...ower 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 you
have to kill the Notes Client, do not do a File/Exit or any normal
shutdown, otherwise these changes get overwritten again.
If y...