Hi Folks,
Ich will eine Abfrage, ob das Feld eines Dokuments
leer ist oder nicht.
isempty(Feldname) ergibt bei mir aber immer ein
false, egal ob da was drin steht oder nicht.
Wo ist mein Denkfehler ?
Don Pasquale
Dim ws As New NotesUIWorkspace
Dim session As New NotesSession
Dim db As NotesDatabase
Dim collection As NotesDocumentCollection
Dim doc As NotesDocument
Dim stringArray As String
Dim composed As String
Dim idx As Integer
Dim temp As Variant
Dim Anzeigetext As String
Set db = session.CurrentDatabase
Set collection = db.UnprocessedDocuments 'Alle markierten Docs in die Kollection
For idx = 1 To collection.Count
Set doc = collection.GetNthDocument(idx)
If Isempty(doc.pe_Identnummer(0)) Then
Messagebox "Es ist empty"
Else
Messagebox Isempty(doc.pe_Identnummer(0))
End If
next