HELP! Programmatically created folders not accessible via UI

I am creating a folder in LotusScript using the following code: folderName = session.CommonUserName

Call db.EnableFolder(folderName)

    Call ws.Reloadwindow()

This works great - on the backend. But the folder is not accessible from the UI until the application is closed and reopened! NotesUIWorkspace.Reloadwindow() seems to do nothing. Any suggestions? Thanks!

ggowen@pdg1.net

Subject: Open the folder

I recall seeing somewhere from someone else who had a similar issue and their workaround was to open the folder in the UI (using LotusScript) and then close it which then made it available.

Subject: Open the folder…

Thanks for your response, Alex. Unfortunately, that is exactly the problem; Notes will not allow me to access the newly created folder through the frontend without first closing then reopening the db. I can open the new folder just fine on the backend right after I create it, but that does me no good since I want to take the user immediately to the new folder.