I would appreciate an example of an agent that interacts with the user displaying more that 1 option to choose, a drop down list, and allowing the user to select. The selection gets moved into a variable and the process continues from there.
Subject: Interactive Agent
This pops up a view in a dialog box and returns the values of mentioned column in stringArray, you can select one or multiple docs by changing the second parameter to True
Dim ws As New NotesUIWorkspace
stringArray =ws.PickListStrings( PICKLIST_CUSTOM, False,“Server” ,“Db Path” , “ViewName”, “Select”, “Prompt”, 1)
HTH