|
-
Jan 12th, 2000, 11:41 PM
#1
Thread Starter
New Member
HI,
How I have two text boxes that contain numbers. Is it possible to add the two text boxes together?
somthing like
var= text1.text + text2.text
but that doesn't work.
Thanks!
-
Jan 12th, 2000, 11:43 PM
#2
You must convert the text to values:
var = Val(Text1.Text) + Val(Text2.Text)
Good luck!
------------------
Joacim Andersson
[email protected]
[email protected]
www.YellowBlazer.com
-
Jan 12th, 2000, 11:48 PM
#3
Thread Starter
New Member
Thanks for the quick reply, that worked great!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|