Project started- Oct 10th 2014
Progress- Functional requirement specification of the project is provided by the company. Detail study of FRS is done.
| Public: | Indicates that the Sub procedure is accessible to all other procedures in all scripts. |
| Default: | Used only with the Public keyword in a Class block to indicate that the Sub procedure is the default method for the class. An error occurs if morethan one Default procedure is specified in a class. |
| Private: | Indicates that the Sub procedure is accessible only to other procedures in the script where it is declared. |
| name: |
Name of the Sub; follows standard variable naming conventions. |
| arglist: | List of variables representing arguments that are passed to the Sub procedure when it is called. Commas separate multiple variables. |
| statements: | Any group of statements to be executed within the body of the Sub procedure. |
Addition 5 , 4
Sub Addition( num1,num2)
Result=num1+num2
Msgbox "The Sum of the numbers is " & Result
End Sub
| Public: | Indicates that the Function procedure is accessible to all other procedures in all scripts. |
| Default: | Used only with the Public keyword in a Class block to indicate that the Function procedure is the default methodfor the class. An error occurs ifmore than one Default procedure is specified in a class. |
| Private: | Indicates that the Function procedure is accessible only
to other procedures in the script where it is declared or if the function is a member of aclass, and that the Function procedure is accessible only to other procedures in that class. |
| name: | Name of the Function; follows standard variable naming conventions. |
| arglist: | List of variables representing arguments that are passed
to the Function procedure when it is called. Commas separate multiple variables. |
| statements: | Any group of statements to be executed within the body of the Function procedure. |
| expression: | Return value of the Function. |
Result=Addition(5,4)
Msgbox "The sum of the number is " & Result
Function Addition( num1,num2)
Addition=num1+num2
End Function
| Call: | (Optional) keyword, If specified, you must enclose argumentlist in parentheses. |
| name: | (Required) Name of the procedure to call. |
| argument list: | (Optional) Comma-delimited list of variables, arrays, or expressions to pass to the procedure. |
'Call a Sub procedure
Call Addition(5 , 4)
Sub Addition( num1,num2)
Result=num1+num2
Msgbox "the Sum of the numbers is " & Result
End Sub
'Code in External Library file(sample.vbs file).
function SumOfTwoNumbers(a,b)
Dim sum
sum=a+b
SumOfTwoNumbers=sum
End Function
executefile "D:\Sample.vbs"
x=10
y=5
result=SumOfTwoNumbers(x,y)
msgbox result