February 13, 200124 yr I have a script that searches through my DB for modified records then exports them and calls the same script in another DB and so on, the only thing is that if no records are modified then FM displays a dialog box "No records Match this request etc" which gives the user an option to kill the script, which I don't want them to be able to do, just for it to ignore it and go on to the next script. So how do I stop these dialog boxes from appearing ?? do I have to use something like the if records found =0 then else command ? something something any pointers would be nice
February 13, 200124 yr first script step: set error capture [on] this will cause the script to continue on when no records are found. If you need it to do something special when no records are found, then after the Perform Find step, have an if statement: if [ "status(currtentfoundcount)=0"] rest of script here. hope it helps. jeremy
Create an account or sign in to comment