Hallo,
ich möchte eine Laufende Nummer als eine Art "ID" vergeben. Bei folgendem Code kommt die Fehlermeldung "Type Mismatch"
Sub Querysave(Source As Notesuidocument, Continue As Variant)
Dim ns As New NotesSession
Dim db As NotesDatabase
Dim nv As NotesView
Dim doc As NotesDocument
Dim item As NotesItem
Dim flgcnt As Long
Set db = ns.CurrentDatabase
Set nv = db.GetView("ID")
Set doc = nv.GetLastDocument
Set item = doc.GetFirstItem("ID")
flgcnt = item.Text
flgcnt = flgcnt + 1
Call source.FieldSetText("ID", flgcnt)
End Sub
Definiere ich die Variable flgcnt als sting bekomme ich die Fehlermeldung auch.
Hat jemand die möglichkeit mir zu helfen?