Hi,
habe ein Profildok, welches ich aber zum bearbeiten in einer Dialogbox anstatt normaler Maske anzeigen lassen will.
@Dialogbox will ja nur das aktuelle doc.
Hier mein Ansatz, wie komme ich an das Profile-Dok?
--------------------------------------------------
Sub Initialize
Dim workspace As New NotesUIWorkspace
Dim session As New NotesSession
Dim dbCurrent As NotesDatabase
Dim doc As NotesDocument
Dim myFormName As String
Dim myTitle As String
Dim Ok As Variant
Set dbCurrent = session.CurrentDatabase
Set doc = myFormName = "frm_Setup"
myTitle = "Einstellungen"
Ok = workspace.DialogBox ( myFormName, True, True, True, False, False, False, myTitle, doc, True,True )
End Sub
--------------------------------------------------
Grüße,
TMC