Da ich zum ersten mal mit einem profildokument arbeite (ja, sowas gibts auch noch) habe ich laut Notes-Hilfe einfach eine "normale" Maske errichtet und damit das Profildok erstellt.
Wie hast Du das denn erstellt?
Set notesDocument = notesDatabase.GetProfileDocument( profilename$ )
erstellt bzw. holt ein Profil per Script. Damit Du dem profil die Maske zuweist, kannst Du dann folgendes machen:
dim profile as NotesDocument
set profile = db.GetProfileDocument("Profil")
profile.Form = "Name der Maske"
'Profil öffnen
call ws.EditDocument( true, profile )
Andreas