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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Sum webpage fields

Status
Not open for further replies.

MARELUAD

Programmer
Jan 13, 2003
37
NL
How can I sum of two fields in a webpage

I have tried:

<script language="VBScript" >
function somautokm()
Dim i
i = form1.km1.value + form1.km2.value
form1.totaalkm.value = i
end function
</script>

But I get by 22+33 = 2233 ?????
 
Hello MARELUAD,

Common behavior of variable type of string taken as number.
Code:
i = cint(form1.km1.value) + cint(form1.km2.value)
There are also cint(), cdbl(), csgn() etc. Choose the proper one.

regards - tsuji
 
Correction:

I meant:
There are also cint(), cdbl(), [red]csng()[/red] etc.

Sure also clng(), ccur() etc.

- tsuji
 
I have tried it but I get the next error:
Type mismatch: 'cint'

 
MARELUAD,

Insert this this see what you get
msgbox form.km1.value & vbcrlf & _
vartype(form.km1.value) & vbcrlf & _
escape(form.km1.value) & vbcrlf & _
len(form.km1.value)

(If either one of the function provokes error, take it out until msgbox gives you at least some info.) Post the output.

- tsuji
 
MARELUAD,

The result shows that, at least, km1 is normal. Try the same for km2. Look, with due respect, put
i=cint("22")+cint("33")
instead, what do you say form1.totaalkm.value will show?

- tsuji
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top