Displays a question in the form of a dialog box with buttons for choice of answer.
Pascal
Visual basic
ier = GOE.SPI_USR_ask_question("Do you want to copy this file","-Yes-No",iret)
if user press YES button, iret will be set to 2.
if user press NO button, iret will be set to 3.
if user press ESC key, ier will be set to SPI_NO and iret to -1
int SPI_USR_ask_question(const std::string &question, const std::string &answear, int *noButtonClicked)
Displays a question in the form of a dialog box with buttons for choice of answer.
Definition sp_usr01.c:45