February 24, 200421 yr Hello I am using a script in a related file to do a find. I was wondering if there is a way to set a script to bypass the "no matching records found dialog box" and just place that very text " No records found" in a field by itself without having to go through the "okay" proceedure of the dialog box which is what I am trying to avoid. Thanks Hart
February 24, 200421 yr The no records found dialog is actually just an error message. So... Set Error Capture [on] Perform Find Set Error Capture [off] if status(currentfoundcount) = 0 setfield [gMessage,"No records found"] end if Jeff
Create an account or sign in to comment