Given a profile name, returns a collection of Profile documents that match the name.
... werfe den ersten Stein.
Dim nc As NotesNoteCollection
Dim nid As String
Set nc = src.CreateNoteCollection(False)
nc.SelectProfiles = True
Call nc.BuildCollection
nid = nc.GetFirstNoteId
While(nid <> "")
Set doc = src.GetDocumentByID(nid)
Call doc.CopyToDatabase( dst )
nid = nc.GetNextNoteId(nid)
Wend