August 3, 200520 yr 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
August 3, 200520 yr 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 ]
Create an account or sign in to comment