VB Script - Part II: Chapters
VB Script - Part II: Chapters
cid=37
Working with Files using FSO (required) argument is a comma-delimited list of values that are assigned to the elements of an array contained with the
arglist:
Variant. If no arguments are specified, an array of zero length is created.
Excel
Example:
Actions
A = Array(10,20,30)
Functions
Print A(0) 'Output --> 10
Difference between Action and Print A(1) 'Output --> 20
Function Print A(2) 'Output -->30
Database Connections
'multidimensional array
Dim DNum(3,2)
Automation Object Model
DNum(0,0)=10
DNum(0,1)=20
Synchronization DNum(1,0)=30
DNum(1,1)=40
Environment Variables DNum(2,0)=50
DNum(2,1)=60
XML
Contact Us
IsArray Function
Arguments:
Example:
'IsArray
Dim Arr
Dim NArr
Arr = Array(10,20,30)
LBound Function
LBound: Returns the smallest available subscript for the indicated dimension of an array.
Arguments:
arrayname: Name of the array variable; follows standard variable naming conventions.
1 of 6 1/29/2016 3:31 AM
QTPWorld http://www.qtpworld.com/index.php?cid=37
Whole number indicating which dimension's lower bound is returned. Use 1 for the first
dimension:
dimension, 2 for the second, and so on. If dimension is omitted, 1 is assumed.
Example:
'LBound
Dim LArr
LArr = Array(10,20,30)
Print Lbound(LArr,1) 'Output --> 0
''multidimensional array
Dim Lmarr(3,2)
UBound Function
UBound: Returns the largest available subscript for the indicated dimension of an array.
Arguments:
arrayname: (Required) Name of the array variable; follows standard variable naming conventions.
(Optional) Whole number indicating which dimension's upper bound is returned. Use 1 for the first dimension,
dimension:
2 for the second, and so on. If dimension is omitted, 1 is assumed.
Example:
'UBound
Dim UArr
UArr = Array(10,20,30)
Print Ubound(UArr,1) 'Output --> 2
''multidimensional array
Dim Umarr(3,2,4)
Date Function
Syntax: Date
Example:
Time Function
Time: Returns a Variant of subtype Date indicating the current system time.
Syntax: Time
Example:
'Time
Print Time
'Output --> Displays the current system time.
DateAdd Function
DateAdd: Returns a date to which a specified time interval has been added.
Arguments:
interval: (Required) String expression that is the interval you want to add. See Settings section for values.
(Required) Numeric expression that is the number of interval you want to add. The numeric expression can either
number: be positive, for dates in the future, or negative, for dates in the past.
date: (Required) Variant or literal representing the date to which interval is added.
Example:
'DateAdd
DateDiff Function
2 of 6 1/29/2016 3:31 AM
QTPWorld http://www.qtpworld.com/index.php?cid=37
Arguments:
(Required) String expression that is the interval you want to use to calculate the differences between
interval:
date1 and date2.
date1, date2: (Required) Date expressions. Two dates you want to use in the calculation.
firstdayofweek: (Optional) Constant that specifies the day of the week. If not specified, Sunday is assumed.
(Optional) Constant that specifies the first week of the year. If not specified, the first week is assumed to be
firstweekofyear:
the week in which January 1 occurs.
Example:
DatePart Function
Arguments:
interval: (Required) String expression that is the interval of time you want to return.
date: (Required) Date expression you want to evaluate.
firstdayof week: (Optional) Constant that specifies the day of the week. If not specified, Sunday is assumed.
(Optional) Constant that specifies the first week of the year. If not specified, the first week is
firstweekofyear:
assumed to be the week in which January 1 occurs.
Example:
'DatePart
Day Function
Day: Returns a whole number between 1 and 31, inclusive, representing the day of the month.
Syntax: Day(date)
Example:
'Day
Print Day("11-01-2010")
'Output -->1
Print Day("11/1/2010")
'Output -->1
Month Function
Month: Returns a whole number between 1 and 12, inclusive, representing the month of the year.
Syntax: Month(date)
Example:
'Month
Print Month("11-01-2010")
'Output -->11
Print Month("11/1/2010")
'Output -->11
MonthName Function
Arguments:
month: (Required) The numeric designation of the month. For example, January is 1, February is 2, and so on.
3 of 6 1/29/2016 3:31 AM
QTPWorld http://www.qtpworld.com/index.php?cid=37
(Optional) Boolean value that indicates if the month name is to be abbreviated. If omitted, the default is
abbreviate: False, which means that the month name is not abbreviated.
Example:
'MonthName
Print MonthName(11,true)
'Output -->Nov
Print MonthName(12,false)
'Output -->December
Print MonthName(9)
'Output -->September
Weekday Function
Weekday:
Arguments:
date: Any expression that can represent a date. If date contains Null, Null is returned.
firstdayofweek: A constant that specifies the first day of the week. If omitted, vbSunday is assumed.
Example:
'Weekday
WeekdayName Function
Arguments:
(Required) The numeric designation for the day of the week. Numeric value of each day depends on setting
weekday:
of the firstdayofweek setting.
(Optional) Boolean value that indicates if the weekday name is to be abbreviated. If omitted, the default is
abbreviate:
False, which means that the weekday name is not abbreviated.
firstdayofweek: (Optional) Numeric value indicating the first day of the week.
Example:
'WeekdayName
Print WeekdayName(4)
'Output -->Wednesday
Year Function
Syntax: Year(date)
Arguments:
date: Any expression that can represent a date. If date contains Null, Null is returned.
Example:
'Year
Print Year("11-01-2010")
'Output -->2010
Print Year("11/1/2010")
'Output -->2010
Hour Function
Hour: Returns a whole number between 0 and 23, inclusive, representing the hour of the day.
Syntax: Hour(time)
Arguments:
4 of 6 1/29/2016 3:31 AM
QTPWorld http://www.qtpworld.com/index.php?cid=37
time: is any expression that can represent a time. If time contains Null, Null is returned.
Example:
'Hour
Print Hour(Now)
'Output -->Displays the current system hour.
Minute Function
Minute: Returns a whole number between 0 and 59, inclusive, representing the minute of the hour.
Syntax: Minute(time)
Arguments:
time: is any expression that can represent a time. If time contains Null, Null is returned.
Example:
'Minute
Print Minute(Now)
'Output -->Displays the current system minute.
Second Function
Second: Returns a whole number between 0 and 59, inclusive, representing the second of the minute.
Syntax: Second(time)
Arguments:
time: is any expression that can represent a time. If time contains Null, Null is returned.
Example:
'Second
Print Second(Now)
'Output -->Displays the current system Second.
Now Function
Now: Returns the current date and time according to the setting of your computer's system date and time.
Syntax: Now
Example:
'Now
Print Now
'Output -->Displays the current system date & time.
TimeSerial Function
TimeSerial: Returns a Variant of subtype Date containing the time for a specific hour, minute, and second.
Arguments:
hour: Number between 0 (12:00 A.M.) and 23 (11:00 P.M.), inclusive, or a numeric expression.
Example:
'TimeSerial
Print Timeserial(13,30,00)
'Output -->1:30:00 PM
TimeValue Function
Syntax: TimeValue(time)
Arguments:
is usually a string expression representing a time from 0:00:00 (12:00:00 A.M.) to 23:59:59 (11:59:59 P.M.), inclusive.
time: However, time can also be any expression that represents a time in that range. If time contains Null, Null is returned.
Example:
5 of 6 1/29/2016 3:31 AM
QTPWorld http://www.qtpworld.com/index.php?cid=37
'TimeValue
Print TimeValue("16:30:00")
'Output -->4:30:00 PM
Copyright QTPWorld.com 2013 Home | Demo videos | Students | Training | FAQ's | Feedback | About Us Designed By WebZone
6 of 6 1/29/2016 3:31 AM