cancel
Showing results for 
Search instead for 
Did you mean: 

about message box

Former Member
0 Kudos

hi friends,

in my adobe forms iam having only one check box.

if i select that check box, i should get a message box data.

i wrote the following code for check box,

if($.rawValue == 1) then

Subform1.c.messageBox("this is clicked")

endif

iam not getting the messageBox output.

can any one help me.

Accepted Solutions (0)

Answers (1)

Answers (1)

harman_shahi
Contributor
0 Kudos

Hello,

If you can use JavaScript, then you can use the following code for your requirement.

Place the following code in the Change event of you Checkbox, and select "JavaScript" as you Scripting Language:



if ( this.rawValue == 1)
{
xfa.host.messageBox("this is clicked...");
}

hope this helps,

harman