Ich werde heute noch wahnsinnig:
in der Aktionsleiste eines Dokumentes habe ich folgende Aktion (und ich bin mir sicher, das schon einmal ähnlich gemacht zu haben)
Option declare ist eingestellt, und im Debugger werden auch alle Variablen belegt.
Was muss ich noch machen, damit das läuft?
Version ist 7.0.1
dim uiw as New NotesUIworkspace
Dim str_Rejection As String
Dim doc_temp As NotesDocument
Dim db_current As NotesDatabase
Set db_current = session.CurrentDatabase
Set doc_Temp = db_current.CreateDocument
doc_Temp.form = "dlg_bla"
call uiw.DialogBox( "dlg_bla" ,_
True, _' [autoHorzFit] ,
True,_' [autoVertFit] ,
false,_'[noCancel] ,
false, _'[noNewFields] ,
False,_'[noFieldUpdate] ,
False, _'[readOnly] ,
"Bitte tragen Sie eine Begründung ein!", _ '[title$] )
doc_Temp)