Inputbox$ with drop down selection

I am changing a lotus script command that uses Inputbox$. The software was written by someone else and is interconnected to several other commands. I can add one default setting to the InputBox$ command but would like a dropdown of several options if possible.Thanks for your time.

JA

Subject: Inputbox$ with drop down selection

InputBox only allows a single line of user input. If you want dropdown boxes, you’ll need either PickListStrings (if the choices can be gotten from a view) or Prompt (the OKCancelList type.)

Subject: Inputbox$ with drop down selection

Check the Prompt and the DialogBox methods of the NotesUIWorkspace class.