Does anyone know if it is possible to disable the save option when using @Command([FileCloseWindow])? Or is there another command I can use? I’m using it in a prompt, and if the user selects no I want the form to close without asking them if they want to save it.
The problem w/ the @Command([FileSave];@Command([FileCloseWindow]) (it that is the desired outcome) is that if there are validations formulas that fail- it presents the user w/ some challenges. I use@If(!@command([ViewRefreshFields]);@return(“”);“”);
@command([FileSave]);@Command([FileCloseWindow])
This way, if a validation formula fails, the formula stops.