cancel
Showing results for 
Search instead for 
Did you mean: 

Adobe Forms Printing Problem

Former Member
0 Kudos

Hi, I have 2 bosy pages and 2 master pages. B1 is attached to M1 and B2 to M2. After B1 fills in the pagination Tab I gave u201CGoto Page M2 u201C.

I want to print M2 and B2 on One condition. How can I achieve this ?

I want to know what are the events that trigger after the Page B1 fills and hits u201CGoto Page M2u201D

Accepted Solutions (1)

Accepted Solutions (1)

harman_shahi
Contributor
0 Kudos

Try this:

- Place a Text Field at end of page M1.

- You can place your condition in the Layout:Ready Event of this Text Field.

- Then you can Set the Presence Property of this text to u201CInvisibleu201D

Hope this helps,

Harman

Former Member
0 Kudos

Hi ,I did the way to said but M2 is printing even if the condition is true.

I created the text field and applied this formcalc on it in Layout:ready

if ($record.POS =="MAN") then

M2.presence = "hidden"

endif

M2 is printing .. I want to avoid M2 if POS is MAN

Any Help ?

harman_shahi
Contributor
0 Kudos

I don't think you can hide a Master Page; Master Pages are not directly displayed to the Users, only Body Pages are displayed;

So, try changing your code to hide the Body Page:

if ($record.POS =="MAN") then
B2.presence = "hidden"
endif

Please see this Post:

regards,

harman

Former Member
0 Kudos

I tried the Way you told me.. B2 is not printing but M2 is printing. When My B1 fills in the Pagination Tab in AFTER: Goto Page M2.

Does it effects anything ?

The link you gave me tells that we cannot avoid M2 printing ... it this true ?

harman_shahi
Contributor
0 Kudos

Do you have to set "Goto Page M2" ? Try changing "Goto Page M2" to "Continue Filling Parent".

(I have tried hiding a master page at runtime before, but without success. )

regards,

Harman

Former Member
0 Kudos

Hi.. I want my age B2 page to start on New Page so I have to use Goto Page M2 in B1... can u supress M2 ?

Former Member
0 Kudos

Any idea to do this ?

What are the events tht execute after "GOTO MASTER PAGE" ?

Answers (0)