Das Notes Forum

Domino 9 und frühere Versionen => Entwicklung => Thema gestartet von: skywook am 25.02.04 - 13:16:03

Titel: Ansichtsabhänige Suche
Beitrag von: skywook am 25.02.04 - 13:16:03
Hallo,
bräuchte mal Eure Hilfe.
Wie kann ich bei einer Ansichtsabhängigen Suche das gefundene Dokument anzeigen bzw öffnen lassen?

   Set tmpdoc = v.GetDocumentbyKey(Keys,True)
          If Not (tmpdoc Is Nothing) Then

         Hier sollte dann das Dokument geöffnet werden.            

 
          Else
Titel: Re:Ansichtsabhänige Suche
Beitrag von: klaussal am 25.02.04 - 13:30:37
... aus der hilfe:

  Set uidoc = workspace.EditDocument( True )

Titel: Re:Ansichtsabhänige Suche
Beitrag von: Axel am 25.02.04 - 13:48:39
@klaussal

da fehlt noch ein Parameter.

So sollte es gehen:

Set tmpdoc = v.GetDocumentbyKey(Keys,True)
If Not (tmpdoc Is Nothing) Then
   Set uidoc = workspace.EditDocument( True, tmpdoc )
End If

Axel