Hallo,
Danke für deine Antwort, aber wenn ich des Dokument nicht speichern will, bekomme ich eine Fehlermeldung. Kannst du mir sagen, wie ich mein LS verändern soll, damit die Informationen gezeigt aber nicht gespeichert werden. Ich habe schon versucht die Zeilen:
'Neues Dokument erstellen
'Set doc = db.CreateDocument
'doc.Form = "Karteikarte"
'doc.salesdocid = coldocid
'doc.salesnum = salesnum
'doc.firma = firma
'Call doc.Save(True, False)
' Document anzeigen
'Call ws.SetTargetFrame( "summarize" )
'Set notpesUIDocument = ws.EditDocument( False , doc, False)
mit diesen zu ersetzen:
Call ws.SetTargetFrame( "summarize" )
Set notpesUIDocument = ws.ComposeDocument( "", "", "Karteikarte")
Call notpesUIDocument.fieldsettext("salesdocid", coldocid)
Call notpesUIDocument.fieldsettext("salesnum", salesnum)
Call notpesUIDocument.fieldsettext("firma", firma)
Call notpesUIDocument.fieldsettext("SaveOptions", "0")
Jetzt speichert Notes keine Docs aber zeigt nur leere Tabelle (Karteikarte) ohne Informationen.
Vielen Dank!