Is there a way to do a confirmation dialog box in InfoPath 2007 without writing code?
I am trying to avoid writing code however, need to do something similer to the functionality of XDocument.UI.Confirm
Example in code
var warnmsg = XDocument.UI.Confirm("WARNING MESSAGE WITH YES AND NO?", 4);
if (warnmsg == 6) {
// IF YES IS SELECTED
XDocument.UI.Alert("You picked YES");
}
else {
// IF NO IS SELECTED
if (warnmsg == 7){
XDocument.UI.Alert("You Picked NO");
}
}