Not directly that I know of. An alternative would be to create your
own form in your project that has all the buttons you could possibly
want, and then a label for your prompt. You could load it, set flags
for what buttons you want to have visible, set your prompt label, and
then display it. When a user clicks on a button, set some public flag
variable and then hide the form. Back in the calling program, it will
return when you hide the form, and in your code there in the calling
program, you can check for various button flags, and destroy the form.
Somewhat of a manual workaround but it works great. I do it all the
time.
Mark H.