cancel
Showing results for 
Search instead for 
Did you mean: 

Inserting Images in Adobe Forms

Former Member
0 Kudos

hi all,

My requirment is that i need to print three diferent logos in a single form by validating them with the company code.

i have to print the respective company code logo in the adobe form how can i do that and tell me the steps for the formcalc coding.

Thanks in advance.

M.Phanindra

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Phanindra,

Place the All Images in Form and Go to the Form Ready Event ,

Initially Hide all the images,

Assume,

image1.presence = "hide"

image2.presence = "hide"

image3.presence = "hide"

Place the one textfield for validating images,

Goto the Exit event of the textfied, there u will write a code for visibility,

if (textfield1.rawValue = "1") then

image1.presence = "visible"

else if (textfield1.rawValue = "2") then

image2.presence = "Visible"

elseif (textfield1.rawValue = "3")then

image3.presence = "visible"

endif.

This code, may help for u,

By

Parthi

Answers (0)