So - also der Fehler mit "Variable not set" ist Weg - Danke. Aber - aus irgend einem Grund macht der Eclipsclient jetzt das Mail in einem Extra Fenster auf?!
Folden Codes sind jetzt hier im Ensatz:
PostOpen:
Sub Postopen(Source As Notesuidocument)
Dim doc As NotesDocument
Set doc = Source.Document
Call doc.ReplaceItemValue( "ALLStatus",0)
End Sub
QueryClose:
Sub Queryclose(Source As Notesuidocument, Continue As Variant)
Dim workspace As New NotesUIWorkspace
Dim doc As NotesUIDocument
Dim uidoc As NotesUIDocument
Set doc = workspace.CurrentDocument
Set uidoc = workspace.CurrentDocument
If doc.FieldGetText( "Z_Status" ) = "" And doc.FieldGetText( "ALLStatus" ) = "0" Then
Messagebox( "*** Please Note - You need to Accept or Decline the Handout!!! ***" ), 0 + 16
Continue = False
End If
If doc.FieldGetText( "AppProcessed" ) <> "Form Processed - Thank You" And doc.FieldGetText( "ALLStatus" ) = "0" Then
Messagebox( "*** Use Submit and Send Back to ISG to Close ***" ), 0 + 16
Continue = False
End If
End Sub
Ich seh nicht wirklich einen Grund warum das geschieht - auf allen anderen Clients läuft es problemlos (also allen nicht eclipse Clients) ...