technoranger Posted August 3, 2005 Posted August 3, 2005 My solution has a set of layouts that may or may not be used. Is there any way to selectively print only those layouts which are used. For example, have a radio button to print. Only those layouts where the radio button was selected would print. Thanks, Rick
Ender Posted August 3, 2005 Posted August 3, 2005 You can add conditions to your print script to have it selectively print each layout: If [ not isempty(Field1) ] Go to Layout [ Layout 1 ] Print [ no dialog ] End If If [ not isempty(Field2) ] Go to Layout [ Layout 2 ] Print [ no dialog ] End If ... Go to Layout [ original layout ]
Recommended Posts
This topic is 7043 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 accountSign in
Already have an account? Sign in here.
Sign In Now