Is there a way to automatically answer a dialog box using formula coding? In IBM notes domino - I would like to have some formula code behind a button to automatically answer a dialog box. Is this possible?
Avoid the "would you like to save?" dialog box.
Save your document after you changed all fields in your button.
@Command([EditDocument]; 1);
FIELD Counter := Counter + 1;
@PostedCommand([FileSave]);
@PostedCommand([EditDocument]; 0);