使用vba填写pdf模板-问题选择列表

时间:2018-11-04 08:59:14

标签: javascript xml vba pdf

我有一个宏,该宏使用VBA代码实现PDF模板。一切都可以在普通字段中正常工作,但是我对选择列表有一些问题-根据选择列表中的选择,PDF模板会有一些更改,但是当我尝试更改此字段的值时(使用Fields(“ nameoffield”)。value = )它不会更改模板中的任何内容-如何从VBA级别执行它?

这是此选择列表的部分代码

    <field name="fieldname">

            <event activity="exit" name="event__exit">
               <script contentType="application/x-javascript">var val = this.rawValue;

if(val == 1){
  ‘sth
}else if(val == 2){
   ‘sth
}else if(val == 3){
   ‘sth
}else if(val == 4){
  ‘sth   
}else{
    this.rawValue = this.rawValue;
}
</script>
            </event>
            <items>
               <text>Choice1</text>
               <text>Choice2</text>
               <text>Choice3</text>
               <text>Choice4</text>
            </items>
            <items save="1" presence="hidden">
               <text>1</text>
               <text>2</text>
               <text>3</text>
               <text>4</text>
            </items>

            <value>
               <text>2</text>
            </value>

      </field>

0 个答案:

没有答案