April 28, 200619 yr Hi! I have a layout for performing finds that looks identical to the entry layout except no pull-downs and no functional buttons. My Find script takes users to the find layout, enters Find and pauses. User enters criteria, resumes script with a button and user is returned to entry layout. If no found set, I have a mssg and user goes back to entry layout. However, the native FM mssg for no found set allows a "Cancel" which leaves users on a mostly non-functional layout. How do I bypass the native FM mssg? Or get rid of the "Cancel"? Modify find and Continue are okay.
April 28, 200619 yr If you set error capture on at the start of your script that will stop the standard message coming up You can use then use the Get(FoundCount) function immediately after your find If Get(FoundCount)=0 Show custom message Go to appropriate layout for no found set Endif HTH Phil
Create an account or sign in to comment