These forums are now Read Only. If you have an Acrobat question, ask questions and get help from one of our experts.

Message Boxes

Gillian
Registered: Jul 10 2007
Posts: 63

I have the following code in a drop-down list:
  
if (form1.Page1.TableNC.Row1.DropDownList10.rawValue = 8);
 
xfa.host.messageBox("If you select UAI for Disposition, all three signatures are required:Quality Manager, Engineering and Materials.", "Help Message", 3);
 
else
if (form1.Page1.TableNC.Row1.DropDownList10.rawValue <> 8);
  
xfa.host.messageBox("Quality Manager signature is required.", "Help Message", 3);
  

-Gillian

My Product Information:
LiveCycle Designer, Windows
gkaiseril
Online
Expert
Registered: Feb 23 2006
Posts: 4307
"Can you rephrase that as a question?"

George Kaiser

Gillian
Registered: Jul 10 2007
Posts: 63
Sorry. My question was why my cde wan't working but since posting, I have gotten it to work. Here's my code:

if (form1.Page1.TableNC.Row1.Disp.rawValue == 8)
{
xfa.host.messageBox("For Disposition UAI, all three signatures are required: Quality Manager, Engineering and Materials.", "Help Message", 3);
}
else


if (form1.Page1.TableNC.Row1.Disp.rawValue == 1 | 7)

{
xfa.host.messageBox("Quality Manager signature is required.", "Help Message", 3)
}

-Gillian