March 21, 200322 yr Does anyone know if there is a way to tell if someone clicks on the Cancel button during a script in the Print Setup dialog box? I have been able to capture the Cancel clicked in the Print dialog box. Can't seem to do it with the Print Setup dialog box.
March 21, 200322 yr Set Error Capture [on] Print Setup If [status (CurrentError) <> 0 ] ..Show Message ["ouch"] End If
March 24, 200322 yr Author Thanks. The only problem is that the Restore option can't be selected in the Print Setup step. If it is, then even if the user clicks Cancel in the dialog box, it returns "0" instead of "1". That's a problem for me since I use the Restore option to make certain that either Current Record or Records Being Browsed is selected in the Print dialog box.
March 24, 200322 yr I suggest you make a separate script that restores your desired Page Setup, just one-line, Print Setup [restore, no dialog]. Let's call it "Tall, Current." Now change your script: Perform Script ["Tall, Current"] Set Error Capture [on] Print Setup If [status (CurrentError) <> 0 ] ..Show Message ["ouch"] End If
Create an account or sign in to comment