how to write basic programs in VB Script like addition,
multiplication?
Answers were Sorted based on User's Feedback
Answer / vaibhav
function vaibhav x,y
dim x,
dim y,
dim z,
z=x*y
msgbox z
| Is This Answer Correct ? | 116 Yes | 59 No |
Answer / dev
1.addition
DIM A=10
DIM B=20
DIM C
DIM D
C=A+B
MSGBOX C (here output is 1020)
C=INT A+INT B
MSGBOX C (HERE OUTPUT IS 30)
D=A*B
MSGBOX D (OUTPUT IS 200)
| Is This Answer Correct ? | 84 Yes | 54 No |
Answer / chandra
'addition
DIM A
A=INPUTBOX("enter a val")
DIM B
B=INPUTBOX("enter b val")
DIM C
DIM D
C=A+B
MSGBOX C (here output is 1020)
C=INT (A)+INT (B)
MSGBOX C '(HERE OUTPUT IS 30)
D=A*B
MSGBOX D '(OUTPUT IS 200)
| Is This Answer Correct ? | 50 Yes | 29 No |
Answer / rohit yadav
private sub command 1_click()
text3.text=val(text1.text)+val(text2.text)
end sub
| Is This Answer Correct ? | 26 Yes | 10 No |
Answer / ramesh
dim a,b,c,d
a=inputbox ("enter the value a: ")
b=inputbox ("enter the value b: ")
c=cint(a)+ cint (b)
d=a*b
msgbox c
msgbox d
| Is This Answer Correct ? | 13 Yes | 3 No |
Answer / chandan
'script for adding two numbers
option explicit
dim num1,num2,result
num1=200
num2=300
result=num1+num2
msgbox result
| Is This Answer Correct ? | 11 Yes | 8 No |
Answer / venkat
Dim a
Dim b
a=inputbox("enter a value")
b=inputbox("enter b value")
Dim c
c=int(a)+int(b)
Msgbox c
| Is This Answer Correct ? | 6 Yes | 3 No |
Answer / vani
dim a,b,sum,mul
a=cdbl(inputbox("enter a?"))
b=cdbl(inputbox("enter b?"))
sum=a+b
mul=a*b
msgbox sum
msgbox mul
| Is This Answer Correct ? | 5 Yes | 4 No |
Answer / pravati
Call sum(x,y)
Function sum(x,y)
x=cint(inputbox ("enter a no"))
y=cint(inputbox ("enter a no"))
z=inputbox("enter the value")
Select Case z
Case "+" msgbox x+y
Case "-" msgbox x-y
End Select
End Function
| Is This Answer Correct ? | 1 Yes | 1 No |
Explain about scrrun.dll in vbscript?
What is parametrization ?
Which operator is used to perform the comparison among 2 operands in the vbscript language?
can any body give the code to write the function for given suppose user login with usrer id and pwd to yahoomail.after cliking "sign in"if it is valid user id the next page will display userid'message box.( Note u have to use excel sheet to retrive the userid's data)
hey please tell me how to retriev data from excel sheet which puts the login name and password in the application? plz send me the code..please help me
What is the difference between do until loop and do while loop?
can anyone send me a vb scripts code for clicking on a link and coming back on home page again does the same for many links on a web page.
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
How to write Descriptive programming in .VBS file i wrote this code but it is giving error.. Dim qtApp set qtApp=createobject("QuickTest.Application") qtApp.Launch qtApp.Visible=True Set objIE = CreateObject("InternetExplorer.Application") objIE.visible = True objIE.Navigate "www.gmail.com" browser("title:=gmail").title("title:=gmail")
wat is com(common object model)object for mozilla firefox??? if any knows the exact answer....plz rply me
What is Querystring collection?
can anybody tell vb script code for alphanumeric and special character .which is used in qtp the name text field.