How to display bookmarks on Lotus Notes 5 - Here is the solution

Peter Leugner pleugner at as-computer.de
Tue May 15 14:32:31 CDT 2001


If you use Notes 5 with wine, you probably have the problem, that 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 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 you start Notes again, the bookmark frame should display. You can close 
it if you like, it will open from now on, just like in windows.

Have fun,

pete



More information about the wine-users mailing list