Autor Thema: GetDocumentbyKey . . .  (Gelesen 1212 mal)

Offline Zsolt_Hermann

  • Frischling
  • *
  • Beiträge: 43
  • Geschlecht: Männlich
  • Notes - Super Software
    • LS telcom AG
GetDocumentbyKey . . .
« am: 26.07.02 - 14:49:47 »
Hallo Leute,

gibt es eine Möglichkeit abzufragen, ob ein Doc initialisiert wurde oder nicht.

Folgender Hintergrund:

Ich möchte prüfen, ob ein Dokuemt bereitsvorhanden ist oder nicht.

Dim session As New Notessession
Dim db As Notesdatabase
DIm view As Notesview
Dim doc As NotesDocument

Set db = session.Currentdatabase
Set view = db.GetView("XYZ")
Set doc = view.GetDocumentByKey("ABCDEF")

If ????????? then
 Messagebox "Doc not found"
Else
 weiter machen . . . . . . .
End IF

Habt Ihr eine Lösung für mich ?

Danke und Gruß

Zsolt Hermann
« Letzte Änderung: 01.01.70 - 01:00:00 von 1034200800 »
2 x Domino 5.0.10 WEB Cluster
2 x Domino 5.0.10
150 Client's

Offline Christopher

  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 1.060
  • Geschlecht: Männlich
  • Dumm ist der, der dummes tut.
Re: GetDocumentbyKey . . .
« Antwort #1 am: 26.07.02 - 14:55:03 »
Ja gibt es.

While Not (doc Is Nothing)
Wend
« Letzte Änderung: 01.01.70 - 01:00:00 von 1034200800 »
Client & Server R 5.011
Principal Certified Lotus Professional R5 System Administration
Microsoft Certified Systems Engineer 2000
Microsoft Certified Systems Administrator 2000
Microsoft Certified Systems Administrator 2003
Microsoft Certified Systems Engineer 2003

Offline Axel

  • Moderator
  • Gold Platin u.s.w. member:)
  • *****
  • Beiträge: 8.658
  • Geschlecht: Männlich
  • It's not a bug, it's Notes
Re: GetDocumentbyKey . . .
« Antwort #2 am: 26.07.02 - 18:59:57 »
Hi,

wenn du nur ein Dokument hast, dann gehts auch so:

If Not (doc Is Nothing) Then
' doc initialisert
Else
'doc nicht initialisiert
End If

Für dein Beispiel würde das so aussehen:

If doc Is Nothing then
 Messagebox "Doc not found"
Else
 weiter machen . . . . . . .  
End IF


Axel
Ohne Computer wären wir noch lange nicht hinterm Mond!

 

Impressum Atnotes.de  -  Powered by Syslords Solutions  -  Datenschutz