Expand my Community achievements bar.

Debadas
Debadas
Offline
Type
  • All
  • Questions
  • Discussions
  • Ideas
  • Blogs
Filter by user contributions
  • Thanks Jono for reply, Actually I need some more clarification on using of barcode, as if I am selecting "Compress Data Before Encoding" option as ON  then I am getting compreed data but if I am selecting "Compress Data Before Encoding" option as OFF then I am getting normal text data, not ASCII for...

    Type

    Questions

    Views

    531

    Likes

    0

    Replies

    0
  • Hello,Thanks for replying. It will help me.Thanks,Debadas.

    Type

    Questions

    Views

    570

    Likes

    0

    Replies

    0
  • Hi,This is because in this case if you have set num{zzz9.999} then if you give more then 4 digits in the numeric field  then it will be shown by comma (,), so if don't want comma then you can increase the number of z i.e. num{zzzzzzz9.999}. So that if you enter upto 8 digits then it will be shown in...

    Type

    Questions

    Views

    544

    Likes

    0

    Replies

    0
  • Hi,Select the display pattern of the Numeric field and write num{zzzzzz9.999} in pattern.Hope this will help you.Thanks,Deb.

    Type

    Questions

    Views

    543

    Like

    1

    Replies

    0
  • Thank you very much. I want to do Certification on LiveCycle ES2 Form Developer. So can you please give me any information about how can I collect the Study materials for it.Thanks,Deb.

    Type

    Questions

    Views

    569

    Likes

    0

    Replies

    0
  • Hello,You can write the script in the PreOpen event of the drop down list boxB as follows:if(boxA.rawValue == "month"){boxB.clearItems();boxB.addItem("JAN");boxB.addItem("FEB");boxB.addItem("MAR");}if(boxA.rawValue == "year"){boxB.clearItems();boxB.addItem("2012");boxB.addItem("2011");boxB.addItem("...

    Type

    Questions

    Views

    751

    Likes

    0

    Replies

    0
  • Hello Chomp,You can not divide by zero, so you need to add code to only allow the division when you have a non-zero divisor.So for  this script Sum(60/file_p_h), you have check wheather file_p_h is non-zero.if(file_p_h ne 0) then Sum(60/file_p_h) endifThanks,Debadas.

    Type

    Questions

    Views

    744

    Likes

    0

    Replies

    0
  • Hello Chomp,In your script you should give a space between then and Sum as follows:“if(cost_p_h ne 0) then Sum(60/file_p_h) endif”Hope,this will help you.Thanks,Debadas.

    Type

    Questions

    Views

    752

    Likes

    0

    Replies

    0
  • Hi,Yes, this is possible by writing the following script in the "exit" event of the "Date1" field in "FormCalc" as belowDate2.rawValue = Num2date(Date2Num(Date1.formattedValue, "MMM DD, YYYY") +1, "MMM DD, YYYY")Date3.rawValue = Num2date(Date2Num(Date1.formattedValue, "MMM DD, YYYY") +2, "MMM DD, YY...

    Type

    Questions

    Views

    650

    Likes

    0

    Replies

    0
  • Hi,You can write the java script in the "exit" event of the DDL as followsif (this.rawValue == "YES")               {                              this.font.fill.color.value = "0,128,0";          }if (this.rawValue == "NO")               {                              this.font.fill.color.value = "2...

    Type

    Questions

    Views

    915

    Likes

    0

    Replies

    0