So sollte es gehen:
Dim doc As NotesDocument
'...set value of doc...
Call doc.RemoveFromFolder( "($Inbox)" )
Zugriff auf das Backend:
dim session as NotesSession
dim db as NotesDatabase
dim inboxfolder as NotesView
set session = New NotesSession
set db = session.CurrentDatabase
set inboxfolder = db.GetView("($Inbox)")
if not (inboxfolder is nothing ) then
'hier hast Du Zugriff auf den Ordner
end if
Andreas