Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Ostgard

  1. Ostgard

    return maximum value

    forgive me my lack of knowledge on this subject... I´m dealing with a pdf-form, where I should create a calculation. This is my calculation so far. var f = this.getField("mil"); var g = this.getField("kr/mil") event.value = f.value * g.value But whatever 'var g' is the result that should...
  2. Ostgard

    Adobe form calculation

    I did like this, but it feels like something is missing? :-) var f = this.getField("mil1"); var g = this.getField("kr/mil1") var g = Math.min( parseInt( this.getField("kr/mil") ), 17 ); event.value = f * g Thanks for your answer, but i din´t really understand what your code does...
  3. Ostgard

    Adobe form calculation

    forgive me my lack of knowledge on this subject... I´m dealing with a pdf-form, where I should create a calculation. This is my calculation so far. var f = this.getField("mil"); var g = this.getField("kr/mil") event.value = f.value * g.value But whatever 'var g' is the result that should...

Part and Inventory Search

Back
Top