Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×

This topic is 3390 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

Error trapping might be an option too -  something like this:

Allow User Abort [OFF]
Set Error Capture [ON]

Page Setup [restore]
Print[]

If [Get(LastError) <> 0]
    Show Message['There was a problem Printing']
Else
    Show Message['Printing Successful']
EndIf

 

Posted

Ok,  I've got the custom dialog box to pop up.  My current issue is that I would only like it to pop up if the field i'm using has something in it.  If it's blank I do not need it to pop up.  How would I do that.  Using the if then i'm assuming.

Posted

YES!

Allow User Abort [OFF]

Set Error Capture [ON]

Page Setup [restore]
Print[]

If[not IsEmpty(yourField)]
   If [Get(LastError) <> 0]]
       Show Message['There was a problem Printing']
   Else
       Show Message['Printing Successful']
   EndIf

EndIf

This topic is 3390 days old. Please don't post here. Open a new topic instead.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.