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
what is diff between static and dynaic arrys?
How will you get the smallest subscript of an array in vbscript?
How to make professional test report using vbscript code in UFT, which gives us complete analysis of the test.
what is the features of visual basic?
Explain about .wsf files?
What are subprocedures in vbscript?
We have 1 web page with names column. I am giving the Service Providers1,2,3.... @ that time dynamically some no of names are displaying in the webpage and The Pop up windows are opening(No.of Pop Up windows=No.of Names). The names may be diffar for each and every Service Provders (Dynamically) How can we handle the Dynamic values?
What is dictionary object in vbscript? Explain?
Explain what is loose binding? Why is it not a good practice to use it?
What are events in the vbscript language?
Explain a few date functions in vbscript
Mention when to use function procedures and what are its characteristics?
In html file what is an ideal position to include vbscript?
How to write VB script for login module?
How to get the length of the string by making use of the string function?