Want to help a beginner ? ;-)I have a view, with an action in it, coded this way:
…
Dim uiws as New NotesUIWorkspace
Dim uivw as NotesUIView
Set uivw = uiws.CurrentView
Set myview = uiws.View
string$ = inputbox (“Input expression:”,“Query”)
i = myview.FTSearch(string$, 0)
…
When the action runs, nothing changes in the view. It doesnt display/filter the results. What is wrong ?