how to write basic programs in VB Script like addition,
multiplication?
Answer Posted / dipanjan
Dim a, b, c, d As Integer
a = TextBox1.Text
b = TextBox2.Text
c = TextBox3.Text
d = Int(a) + Int(b) + Int(c)
MsgBox (d)
for multiplication:
d = a * b * c
MsgBox (d)
| Is This Answer Correct ? | 6 Yes | 8 No |
Post New Answer View All Answers
Mention what is the technology used by vb script?
what is inner join? what is outer join? what is a constraint? tell me about rdbms? tell me about acid properties?
Hi anyone Can Send Solution to the Question wt m posting now Prepare Script for the Bellow Scenario? Login to Gmail Page Open Inbox check Mails save them in a Folder
Mention how to create a cookie using vbscript?
Explain about tristate constants?
how to write codings in QTP using vb script. please help me. i am new to QTP. it is easy or very much tough. please tell me
What is the output of a + b in vbscript if a = 5 and b = 10?
A folder is there inside no of textfiles are avilable. How do count the textfiles. Normally folder means we are using subfolder methods but textfiles is not working for subfolder methods and how do get file name also.
When does ‘on click of button’ event gets triggered in the vbscript language?
What are the differences between sub procedures and function procedures?
How to write VB script for login module?
What is the main difference between function and sub-procedure?
What is loose binding? Why is it not a good practice to use it?
How to get the length of the string by making use of the string function?
What is byref and byval parameters in vbscript?