I am using the Web to view my Lotus Project.
I have a view and I want to search the view for certain key words that a user will type in.
I do not want to use the @Command([ViewShowSearchBar];onOff) command.
The view is a normal view (not embedded) and is in applet mode, and then i want the filtered view to be shown.
I have searched throught the help and the only coding that work only work in the client, not on the web:-
Dim session As New NotesSession
Dim db As NotesDatabase
Dim view As NotesView
Dim doc As NotesDocument
Dim j As Long
Set db = session.CurrentDatabase
Set view = db.GetView("Client Forms Database")
j = view.FTSearch( "Witness", 0 )
Set doc = view.GetFirstDocument()
While Not(doc Is Nothing)
Call doc.PutInFolder( "For Review", True )
Set doc = view.GetNextDocument(doc)
Wend
Call view.Clear
Can anyone help?