Hallo,
irgendwie komme ich nicht weiter.
Ich möchte das momentane Dokument schließen, es nicht speichern (wenn bestimmte Felder leer sind) und anstelle dessen ein bestimmtes anderes Dokument öffnen.
Das ganze passiert wenn das Feld verlassen wird.
Alles klappt nur nicht das "nicht Speichern".
Hier der Code.
| Sub Exiting(Source As Field) |
| Dim session As New NotesSession |
| Dim ws As New Notesuiworkspace |
| Dim doc As NotesUIDocument |
| Dim currentDB As NotesDatabase |
| Dim articleView As NotesView |
| Dim articleDoc As NotesDocument |
| Dim articleDocDatePersNr As String |
| Dim DocDatePersNr As String |
| Dim DocSave As String |
| Dim DocPLeistung As String |
| Dim DocGLeistung As String |
| |
| |
| Set doc =ws.CurrentDocument |
| |
| Call doc.Refresh |
| Call session.SetEnvironmentVar( "Leistung_DailyCalc_DateOfWork", doc.FieldGetText("DateOfWork")) |
| |
| DocDatePersNr = doc.FieldGetText("DatePersNr") |
| DocSave = doc.FieldGetText("SaveStatus") |
| If DocSave <>"" Then |
| Exit Sub |
| End If |
| |
| Set gSession = New NotesSession |
| Set currentDB = gSession.CurrentDatabase |
| Set articleView = currentDB.GetView ( "DateAndPersNR" ) |
| Set articleDoc = articleView.GetFirstDocument |
| |
| While Not articleDoc Is Nothing |
| articleDocDatePersNr = articleDoc.GetItemValue ("DatePersNr")(0) |
| If articleDocDatePersNr = DocDatePersNr Then |
| Messagebox("Das Dokument ist bereits vorhanden.") |
| DocPLeistung = doc.FieldGetText("LNummer") |
| DocGLeistung = doc.FieldGetText("GNummer") |
| If DocPLeistung ="" And DocGLeistung ="" Then |
| SaveOptions =1 |
| End If |
| Call doc.Close |
| Set doc = ws.EditDocument( False , articleDoc ) |
| Exit Sub |
| End If |
| Set articleDoc = articleView.GetNextDocument ( articleDoc ) |
| Wend |
| Call doc.GotoField("CalcPersonCleaningtime") |
| End Sub |