Sideway BICK BlogSideway BICK BLOG from Sideway

A Sideway to Sideway Home

Link:http://output.to/sideway/default.asp?qno=180300009

Script, Scripting Language, VBScript elements, Server-Side VBScript

VBScript Elements

List of VBScript Language Elements

Table of VBScript language element keywords

Element NameDescriptionVer 
- OperatorSubtraction operator is used to create a value by finding the difference between two numbers or by negating the value of a numeric expression.
1
last updated 11/17/2017
' Statementapostrophe ' is used to indicate that following of the line is an included explanatory remarks comment expresseion or statement in a program.
1
last updated 11/18/2017
& Operator& or and concatenating operator is used to create a value by forcing a string concatenation of two expressions.
1
last updated 11/17/2017
* OperatorMultiplication operator is used to create a value by multiplying two numbers.
1
last updated 11/17/2017
/ OperatorDivision operator is used to create a value by dividing two numbers and obtaining a floating-point result.
1
last updated 11/17/2017
\ OperatorInteger division operator (\) is used to create a value by dividing two numbers and obtaining an integer result.
1
last updated 11/17/2017
^ OperatorExponentiation operator is used to create a value by raising a number to the power of an exponent.
1
last updated 11/17/2017
+ OperatorAddition operator or plus concatenating operator is used to create a value by summing two numeric expressions or by concatenating two string expressions
1
last updated 11/17/2017
< OperatorLess than operator is used to create a value by comparing that the first expression is less than the second expression.
1
last updated 11/17/2017
<= OperatorLess than or equal to operator is used to create a value by comparing that the first expression is less than or equal to the second expression.
1
last updated 11/17/2017
<> OperatorNot equal to operator is used to create a value by comparing that the first and second expressions are not equal to each other.
1
last updated 11/17/2017
= OperatorComparing equal to operator is used to create a value by comparing that the first and second expressions are equal to each other. While assigning equal to operation is used to assign a value to variable1 copied the second expressions.
1
last updated 11/17/2017
> OperatorGreater than operator is used to create a value by comparing that the first expression is greater than the second expression.
1
last updated 11/17/2017
>= OperatorGreater than or equal to operator is used to create a value by comparing that the first expression is greater than or equal to the second expression.
1
last updated 11/17/2017
Abs FunctionCreate an unsigned magnitude, or the absolute value of a given number.
1
last updated 9/16/2017
Add Methodis to add a given key and item pair to the associated Dictionary Object.
last updated 12/9/2017
Add Methodis to add a new folder of the given folderName to the associated Folders collection.
last updated 12/16/2017
And OperatorAnd logic operator is used to create a value by performing a logical conjunction on two logic expressions or bitwise logical conjunction on two numeric digit expressions.
1
last updated 11/18/2017
Array FunctionCreate a zero-based one-dimensional array from a given comma-delimited list of values by arranging the elements of the ordered list as members of the array.
2
last updated 9/16/2017
Asc FunctionCreate an ANSI character code number from the first character of a given string by encoding the first character of the given string as the associated ANSI character of the ANSI character code.
1
last updated 9/16/2017
AscB FunctionCreate a Byte from the first byte of the character code of first character of a given string.
1
last updated 9/16/2017
AscW FunctionCreate a decimal Unicode (wide) character code from the character code of first character of a given string.
1
last updated 9/16/2017
AtEndOfLine Propertyis to return a Boolean value indicating the file pointer of associated TextStream Object is positioned immediately before the end-of-line marker with True or is not with False.
last updated 12/17/2017
AtEndOfStream Propertyis to return a Boolean value indicating the file pointer of associated TextStream Object is at the end of file with True or is not with False.
last updated 12/17/2017
Atn FunctionConverts a given number to an angle in radian by taking the inverse trigonometric function of tangent function of the given number.
1
last updated 9/16/2017
Attributes Propertyis to set, if optional newattributes is given and attribute is a read/write attribute, or to return the attributes of a folder or file of associated Folder or File Object.
last updated 12/16/2017
AvailableSpace Propertyis to return the amount of space available to a user on a drive or network share of associated Drive Object.
last updated 12/14/2017
BuildPath Methodis to append a given name to the specified existing path.
last updated 12/13/2017
Call Statementto transfers control to a Sub or Function procedure.
1
last updated 11/21/2017
CBool FunctionCreate a Boolean result value of a given expression.
1
last updated 9/16/2017
CByte FunctionCreate a Byte data subtype value from a given expression.
1
last updated 9/16/2017
CCur FunctionCreate a Currency data subtype value from a given expression.
1
last updated 9/16/2017
CDate FunctionCreate a Date data subtype value from a given expression.
1
last updated 9/16/2017
CDbl FunctionCreate a Double data subtype value from a given expression.
1
last updated 9/16/2017
Chr FunctionCreate an ANSI character string from a given charcode by evaluating the given charcode as the ANSI character code of the associated character.
1
last updated 9/16/2017
ChrB FunctionCreate a character string from a given charcode by evaluating the given charcode as the Byte code of the associated character.
1
last updated 9/16/2017
ChrW FunctionCreate a character string from a given charcode by evaluating the given charcode as the Unicode (wide) character code or Unicode/DBCS of the associated Unicode character.
1
last updated 9/16/2017
CInt FunctionCreate an Integer data subtype value from a given expression.
1
last updated 9/17/2017
Class Objectis to provide a class of user-defined types Object created by the Class statement.
5
last updated 12/6/2017
Class Statementto declares a class by a specified name, as well as a definition of the variables, properties, and methods that comprise the class.
5
last updated 11/21/2017
Clear Methodis to clear all property settings of the Err object.
1
last updated 12/10/2017
CLng FunctionCreate a Long data subtype value from a given expression.
1
last updated 9/17/2017
Close Methodis to close the associated TextStream Object.
last updated 12/16/2017
Column Propertyis to return the column number of the current character position in a line of a file of associated TextStream Object
last updated 12/17/2017
CompareMode Propertyis to set, if optional comparenew is given, or to return the comparison mode for comparing string keys of associated Dictionay Object.
last updated 12/9/2017
Const Statementto declare constants for use in place of literal values.
5, 2
last updated 11/21/2017
Copy Methodis to copy the associated file or folder object to the specified destination according to the specified overwrite setting.
last updated 12/16/2017
CopyFile Methodis to copy one or more given source files to the specified destination according to the specified overwrite setting.
last updated 12/13/2017
CopyFolder Methodis to recursively copy the given source folder to the specified destination according to the specified overwrite setting
last updated 12/13/2017
Cos FunctionConverts a given number to the cosine of the given number by taking the given number as an angle in radian.
1
last updated 9/17/2017
Count Propertyis to return the read-only number of elements in the associated Collection or Object.
last updated 12/9/2017
CreateFolder Methodis to create a folder.object of the specified foldername.
last updated 12/14/2017
CreateObject FunctionCreate a reference to an automation object specified by servername and typename arguments of the object on a location according to the location argument.
2
last updated 9/17/2017
CreateTextFile Methodis to create the given filename file according to the overwrite setting.and to return the associated textStream object that can be used to read from or write to the created file.
last updated 12/14/2017
CSng FunctionCreate a Single data subtype value from a given expression.
1
last updated 9/17/2017
CStr FunctionCreate a String data subtype value from a given expression.
1
last updated 9/17/2017
Date FunctionCreate a date part of the date from the current date of a local computer system with format according to the date setting of the local computer system.
1
last updated 9/17/2017
DateAdd FunctionCreate a date from a given date by adding the specified number of interval to the given date.
2
last updated 9/17/2017
DateCreated Propertyis to return the date and time that the folder or file of associated Folder or File Object was created.
last updated 12/16/2017
DateDiff FunctionCreate a number from two given dates by counting the specified interval from date1 to date2 according to firstdayofweek and firstweekofyear setting.
2
last updated 9/18/2017
DateLastAccessed Propertyis to return the date and time that the folder or file of associated Folder or File Object was last accessed.
last updated 12/16/2017
DateLastModified Propertyis to return the date and time that the folder or file of associated Folder or File Object was last modified.
last updated 12/16/2017
DatePart FunctionCreate a Integer from a given valid Date expression according the the specified interval argument, and firstdayofweek and firstweekofyear settings.
2
last updated 9/18/2017
DateSerial FunctionCreate a date from given numeric expressions of year, month, and day.
1
last updated 9/18/2017
DateValue FunctionCreate a date part of date from a given acceptable date string.
1
last updated 9/18/2017
Day FunctionCreate an Integer with value between 1 and 31 inclusive for representing the 31 days of a month respectively from a given date expression by getting the day part of the given date expression.
1
last updated 9/18/2017
Debug Objectis to provide simple intrinsic global support to a script debugger, such as the Microsoft Script Debugger.
3
last updated 12/10/2017
Delete Methodis to delete the associated file or folder object according to the force setting.
last updated 12/16/2017
DeleteFile Methodis to delete the given filespec file according to the force setting.
last updated 12/14/2017
DeleteFolder Methodis to delete the given folderspec folder and its contents according to the force setting.
last updated 12/14/2017
Description Propertyis to set, if optional stringexpression is given, or to return the Description Property Value of Err Object.
1
last updated 12/10/2017
Dictionary Objectis to provide simple key and item paired data storage.
last updated 12/9/2017
Dim Statementto declare variables and allocates storage space for the specified variable name.
1
last updated 11/21/2017
Do…Loop Statementto repeat a block of statements either while a condition is True or until a condition is True.
1
last updated 11/18/2017
Drive Objectis to provide access to a drive or network share of a computer's file system.
last updated 12/14/2017
Drive Propertyis to return the drive letter of a drive on which the folder or file of associated Folder or File Object resides.
last updated 12/16/2017
DriveExists Methodis to return a Boolean value indicating the drive of the given drivespec exist with True or does not exist with False.
last updated 12/14/2017
DriveLetter Propertyis to return the drive letter of a drive or a network share of associated Drive Object.
last updated 12/14/2017
Drives Collectionis to provide access to all available drives or network shares inside the file system as a single object.
last updated 12/14/2017
Drives Propertyis to return a Drives Collection consisting of all Drive objects available in the file system.
last updated 12/14/2017
DriveType Propertyis to returns a value indicating the type of a Drive of associated Drive Object.
last updated 12/14/2017
Emptyto specify an uninitialized variable
1
last updated 11/26/2017
Eqv OperatorEqv logic operator is used to create a value by performing a logical equivalence or XorNot on two logic expressions or bitwise logical exclusion on two numeric digit expressions.
1
last updated 11/18/2017
Erase Statementto reinitializes the elements of fixed-size arrays and to deallocate dynamic-array storage space.
1
last updated 11/21/2017
Err Objectis to provide simple intrinsic global support for containing information about run-time errors.
1
last updated 12/10/2017
Escape FunctionCreate a String from a given charString by encodeing the unallowable characters of the given charString by the correpsonding character code. While the allowable characters, i.e. *, +, -, ., 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, @, A, B, C, D, E, F, G, H, I, J, K, L, M, N, O, P, Q, R, S, T, U, V, W, X, Y, Z, _, a, b, c, d, e, f, g, h, i, j, k, l, m, n, o, p, q, r, s, t, u, v, w, x, y, z, of the given charString remains unchanged.
5
last updated 9/18/2017
Eval FunctionCreate a evaluation result from a given expression.
5
last updated 9/18/2017
Execute Methodis to executes a regular expression search against a specified string.
5
last updated 12/11/2017
Execute Statementto executes one or more specified statements.
5
last updated 11/21/2017
ExecuteGlobal Statementto execute one or more specified statements in the global namespace of a script.
5
last updated 11/22/2017
Exists Methodis to return a Boolean value indicating the given key exist with True or does not exist with False.
last updated 12/9/2017
Exit Statementto exit a block of Do…Loop, For…Next, Function, or Sub code.
1
last updated 11/22/2017
Exp FunctionConverts a given number to the base of natural logarithms, e, raised to a power of the given number.
1
last updated 9/18/2017
Falseto specify a Boolean False
1
last updated 11/26/2017
File Objectis to provide access to a file.inside a folder of a computer's file system.
last updated 12/16/2017
FileExists Methodis to return a Boolean value indicating the file of the given filespec exist with True or does not exist with False.
last updated 12/14/2017
Files Collectionis to provide access to all available files inside folder as a single object.
last updated 12/16/2017
Files Propertyis to return a Files Collection consisting of all File objects including those with hidden and system file attributes in a folder of associated Folder Object,
last updated 12/16/2017
FileSystem Propertyis to return the type of file system in use for the drive of associated Drive Object.
last updated 12/15/2017
FileSystemObject Objectis to provide access to a computer's file system.
last updated 12/13/2017
Filter FunctionCreate a zero-based array by filtering a given InputStrings according to the specified search Value, and the specified Include and Compare settings.
2
last updated 9/18/2017
FirstIndex Propertyis to return the position in a search string where a match of associated Match Object occurs.
5
last updated 12/11/2017
Fix FunctionCreate an integer value of a given number that is equal to the integer part of the given number by removing the fractional part or non-integer part of the given number.
1
last updated 9/19/2017
Folder Objectis to provide access to a folder of a computer's file system..
last updated 12/16/2017
FolderExists Methodis to return a Boolean value indicating the folder of the given folderspec exist with True or does not exist with False..
last updated 12/14/2017
Folders Collectionis to provide access to all available folders inside a folder as a single object.
last updated 12/16/2017
For Each…Next Statementto repeat a block of statements for each element in an array or collection group.
2
last updated 11/19/2017
For…Next Statementto repeat a block of statements for a number of times according to the specified start To end and step Step settings of the counter.
1
last updated 11/19/2017
FormatCurrency FunctionCreate a string of a formatted currency value expression with a currency symbol defined in the local computer's regional settings from a given numeric or is evaluated as numeric expression according to local system settings and specified arguments.
2
last updated 9/18/2017
FormatDateTime FunctionCreate a string of a formatted date or time value expression from a given date or is evaluated as date expression according to local system settings and specified arguments.
2
last updated 9/18/2017
FormatNumber FunctionCreate a string of a formatted number value expression from a given numeric or is evaluated as numeric expression according to local system settings and specified arguments.
2
last updated 9/18/2017
FormatPercent FunctionCreate a string of a formatted percentage value expression from a given numeric or is evaluated as numeric expression by multiplying the numeric value with 100 and adding a trailing % character according to local system settings and specified arguments.
2
last updated 9/19/2017
FreeSpace Propertyis to return the amount of free space available to a user on a drive or network share of associated Drive Object.
last updated 12/15/2017
Function Statementto declare the name, arguments, and code that form the body of a Function procedure.
1
last updated 11/22/2017
GetAbsolutePathName Methodis to return a complete and unambiguous absolute path name from given pathspec path.
last updated 12/14/2017
GetBaseName Methodis to return a string containing the base name of the last component, less any file extension, in given path.
last updated 12/14/2017
GetDrive Methodis to return a Drive object according to the drive component of the given drivespec.
last updated 12/14/2017
GetDriveName Methodis to return a string containing the drive name of drive component of the given path.
last updated 12/14/2017
GetExtensionName Methodis to return the file extension of the last file component of the given path
last updated 12/14/2017
GetFile Methodis to return a File Object according to the file of given filespec path.
last updated 12/14/2017
GetFileName Methodis to return the file namer of a file component according to the last component of given pathspec path.
last updated 12/14/2017
GetFileVersion Methodis to return the version number of a file component according to the last component of given pathspec path.
last updated 12/14/2017
GetFolder Methodis to return a Folder object according to the given folderspec path.
last updated 12/14/2017
GetLocale FunctionCreate a number from the scripting engine of the local system to indicate the current locale ID value of scripting language in use.
5
last updated 9/19/2017
GetObject FunctionCreate a reference to an automation object from a file specified by pathname argument and/or a class of the object specified by the appname and objectype argumens of the class argument.
5,2
last updated 9/19/2017
GetParentFolderName Methodis to return a string containing the name of the parent folder of the last component in a given path.
last updated 12/14/2017
GetRef FunctionCreate a reference to a procedure specified by procname argument.
5
last updated 9/19/2017
GetSpecialFolder Methodis to return a special Folder Object according to the given folderspec.
last updated 12/14/2017
GetStandardStream Methodis to return a standard TextStream Object according to the given standardStreamType setting and specified optional unicode setting.
last updated 12/14/2017
GetTempName Methodis to generate and return a randomly generated temporary file or folder name for performing operations that require a temporary file or folder.
last updated 12/14/2017
Global Propertyis to set, if optional Boolean value True or False is given, or to return a Boolean value of Global property of associated RegEXp Object indicating a pattern should match all occurrences with True or just match the first one with False in an entire search string.
5
last updated 12/11/2017
HelpContext Propertyis to set, if optional contextID is given, or to return the context ID for a topic in a Help File of Err Object.
2
last updated 12/10/2017
HelpFile Propertyis to set, if optional contextID is given, or to return the fully qualified path to a Help File of Err Object.
2
last updated 12/10/2017
Hex FunctionCreate a hexadecimal number String from a given number by converting the decimal value of the given number from base 10 to a hexadecimal number of base 16.
1
last updated 9/19/2017
Hour FunctionCreate an Integer with value between 0 and 23 inclusive for representing the 24 hours of a day respectively from a given time expression by getting the hour part of the given time expression.
1
last updated 9/19/2017
If…Then…Else Statementto conditionally execute a group of statements according to the condition expression.
1
last updated 11/22/2017
IgnoreCase Propertyis to set, if optional Boolean value True or False is given, or to return a Boolean value of IgnoreCase property of associated RegEXp Object indicating a pattern search is case-sensitive with False or not case-sensitive with True.
5
last updated 12/11/2017
Imp OperatorImp logic operator is used to create a value by performing a logical implication on two logic expressions or bitwise logical exclusion on two numeric digit expressions.
1
last updated 11/18/2017
Initialize EventAn Event trigger caused by the initialization of an instance of Class Object. When the Event is fired, the Event will be triggered and the Event handler uses the Object_Eventname naming convention rule to call any subroutine with the correct naming convention.
5
last updated 12/8/2017
InputBox FunctionCreate and display a standard input dialog box with a text box and a given prompt in the dialog box according to the specified title, default, xpos, ypos, helpfile and context arguments. The dialog box will wait for the user to input text or click a button to continue.
1
last updated 9/19/2017
InStr FunctionCreate a number from a given string1 by getting the position of the first occurrence of a specified string2 through searching from the specified searching position start towards the end of the given string1 according to the specified compare setting.
1
last updated 9/19/2017
InStrB FunctionCreate a number from a given string string1 by getting the first byte position of the first occurrence of a specified string string2 through searching from the specified searching position byte start towards the end of the given string string1 without consider the specified compare setting.
1
last updated 9/19/2017
InStrRev FunctionGet the position of the first occurrence of a specified string within another given string by searching from the specified start searching position, default is at the end of string, towards the start of the given string.
2
last updated 9/19/2017
Int FunctionCreate an integer value of a given number that is less than or equal to the given number.
1
last updated 9/19/2017
Is OperatorIs same Object referenc operator is used to create a value by comparing that the first and second Object references are equal to each other.
1
last updated 11/17/2017
IsArray FunctionCreate a Boolean result value from a given varname indicating whether the given varname is or can be contained by a Variant of Array data subtype.
1
last updated 9/19/2017
IsDate FunctionCreate a Boolean result value from a given expression indicating whether the given expression is or can be contained by a Variant of Date data subtype.
1
last updated 9/19/2017
IsEmpty FunctionCreate a Boolean result value from a given expression indicating whether the given expression is an uninitialized individual.
1
last updated 9/19/2017
IsNull FunctionCreate a Boolean result value from a given expression indicating whether the given expression contains no valid data.
1
last updated 9/19/2017
IsNumeric FunctionCreate a Boolean result value from a given expression indicating whether the given expression can be evaluated as a numeric value.
1
last updated 9/19/2017
IsObject FunctionCreate a Boolean result value from a given expression indicating whether the given expression references a valid Automation object.
1
last updated 9/19/2017
IsReady Propertyis to return a Boolean value indicating the drive of associated Drive Object is ready with True or is not False.
last updated 12/15/2017
IsRootFolder Propertyis to return a Boolean value indicating the folder of associated Folder Object is a root folder with True or is not with False.
last updated 12/16/2017
Item Propertyis to return the read-only item of an element in the associated collection or Object according to the specified key
last updated 12/9/2017
Item Propertyis to set, if optional itemnew is given, the item of an element with the specified key, or to create if the specified key is not found, an element with key, itemnew, or to return the item with the specified key in associated Dictionary Object.
last updated 12/9/2017
Items Methodis to return an array containing all existing items of the associated Dictionary Object.
last updated 12/9/2017
Join FunctionCreate a string from a given one-dimensional array list of substrings by joining all elements in the array accroding to the index numebr with the specified delimiter.
2
last updated 9/20/2017
Key Propertyis to set the specified key of an element with the specified keynew key, or to create if the specified key is not found, an element with empty item in associated Dictionary Object
last updated 12/9/2017
Keys Methodis to return an array containing all existing keys of the associated Dictionary Object.
last updated 12/9/2017
LBound FunctionCreate a number from a given arrayname to represent the smallest available subscript of the given arrayname according to the specified dimension.
1
last updated 9/20/2017
LCase FunctionCreate a string from a given string by converting all uppercase letters of the given string to lowercase letters.
1
last updated 9/16/2017
Left FunctionCreate a substring of specified character length from the left side of a given string.
1
last updated 9/20/2017
LeftB FunctionCreate a substring of specified Byte length from the left side of a given string.
1
last updated 9/20/2017
Len FunctionCreate a number from a given string or a specified variable by counting the number of characters in the given string or the specified variable.
1
last updated 9/20/2017
LenB FunctionCreate a number from a given string or a specified variable by counting the number of bytes in the given string or the specified variable.
1
last updated 9/20/2017
Length Propertyis to return the length of a match of associated Match Object found in a search string.
5
last updated 12/11/2017
Line Propertyis to return the current line number in a file of associated TextStream Object..
last updated 12/17/2017
LoadPicture FunctionCreate a reference to a picture object from the a file specified by picturename argument.
2
last updated 9/20/2017
Log FunctionConverts a given number to the natural logarithm of the given number to base e.
1
last updated 9/20/2017
LTrim FunctionCreate a left trimmed string from a given string expression by removing all leading spaces on the left side of a string.
1
last updated 9/16/2017
Match Objectis to provide access to a regular expression match of a regular expression search.
5
last updated 12/11/2017
Matches Collectionis to prvide access to all matches returned by a regular expression search per a pattern as a single object.
5
last updated 12/11/2017
Mid FunctionCreate a substring of specified character length from the specified position start of a given string toward the end of the string.
1
last updated 9/20/2017
MidB FunctionCreate a substring of specified byte length from the specified byte position start of a given string toward the end of the string.
1
last updated 9/20/2017
Minute FunctionCreate an Integer with value between 0 and 59 inclusive for representing the 60 minutes of an hour respectively from a given time expression by getting the minute part of the given time expression.
1
last updated 9/20/2017
Mod OperatorModulus operator is used to create a value by dividing two integers and obtaining the integer remainder.
1
last updated 11/17/2017
Month FunctionCreate an Integer with value between 1 and 12 inclusive for representing the 12 months of a year respectively from a given date expression by getting the month part of the given date expression.
1
last updated 9/20/2017
MonthName FunctionCreate a String from a given month expression by taking the given month expression as the numeric designation of the month between 1 and 12 inclusive, and with value representing the corresponding month of a year according to the specified abbreviate setting.
2
last updated 9/20/2017
Move Methodis to move folder or file of the associated Folder or File Object to the specified destination.
last updated 12/16/2017
MoveFile Methodis to move one or more given source files to the specified destination.
last updated 12/14/2017
MoveFolder Methodis to move one or more given source folders to the specified destination.
last updated 12/14/2017
MsgBox FunctionCreate and display a standard message dialog box with a given prompt in the dialog box according to the specified buttons, title, helpfile and context arguments. The dialog box will wait for the user to click a button to continue.
1
last updated 9/20/2017
Name Propertyis to set, if optional newname is given, or to return the name of a folder or file of associated Folder or File Object.
last updated 12/16/2017
Not OperatorNot logic operator is used to create a value by performing a logical negation on a logic expression or bitwise logical negation on an expression.
1
last updated 11/18/2017
Nothingto specify an object reference that refers to no object.
1
last updated 11/26/2017
Now FunctionCreate a date from the current date of a local computer system with format according to the date setting of the local computer system.
1
last updated 9/20/2017
Nullto specify a variable contains no valid data
1
last updated 11/26/2017
Number Propertyis to set, if optional errornumber is given, or to return numeric Number value of Err Object.
1
last updated 12/10/2017
Oct FunctionCreate a octal number String from a given number by converting the decimal value of the given number from base 10 to a octal number of base 8.
1
last updated 9/20/2017
On Error Statementto enables or disables error-handling.
1
last updated 11/22/2017
OpenAsTextStream Methodis to open a TextStream Object of the associated File Object according to specified optional iomode setting and format setting for reading from, writing to, or appending to the file.
last updated 12/16/2017
OpenTextFile Methodis to open a given filename file of the associated FileSystemObject Object according to the specified optional iomode setting, create keyword, and format setting, and to return a TextStream Object that can be used to read from, write to, or append to the file.
last updated 12/14/2017
Option Explicit Statementto forces explicit declaration of all variables in a script.
1
last updated 11/22/2017
Or OperatorOr logic operator is used to create a value by performing a logical disjunction on two logic expressions or bitwise logical disjunction on two numeric digit expressions.
1
last updated 11/18/2017
ParentFolder Propertyis to return the parent folder of a folder of file of the associated Folder or File Object.
last updated 12/16/2017
Path Propertyis to return the path of a drive, folder, or file of associated Drive, Folder, or File Object.
last updated 12/15/2017
Pattern Propertyis to set, if optional searchstring is given, or to return the pattern being searched for of associated RegExp Object.
5
last updated 12/11/2017
Private Statementto declares private variables and allocates storage space. Declares, in a Class block, a private variable.
1
last updated 11/23/2017
Property Get Statementto declare, in a Class block, the name, arguments, and code that form the body of a Property procedure that gets (returns) the value of a property.
5
last updated 11/23/2017
Property Let Statementto declare, in a Class block, the name, arguments, and code that form the body of a Property procedure that assigns (sets) the value of a property.
5
last updated 11/23/2017
Property Set Statementto declare, in a Class block, the name, arguments, and code that form the body of a Property procedure that sets a reference to an object.
5
last updated 11/23/2017
Public Statementto declares public variables and allocates storage space. Declares, in a Class block, a public variable.
1
last updated 11/23/2017
Raise Methodis to generate a run-time error result of the given number and together with other specifed optional source, description, helpfile, helpcontext in the Err Object.
1
last updated 12/10/2017
Randomize Statementto initializes the random-number generator.
1
last updated 11/23/2017
Read Methodis to read a specified characters number of characters from a file of the associated TextStream Object, and to return the resulting string.
last updated 12/16/2017
ReadAll Methodis to read the entire file of the associated TextStream Object, and to return the resulting string.
last updated 12/16/2017
ReadLine Methodis to read an entire line (up to, but not including, the newline character) from from a file of the associated TextStream Object, and to return the resulting string.
last updated 12/16/2017
ReDim Statementto declares dynamic-array variables, and allocates or reallocates storage space at procedure level.
1
last updated 11/23/2017
RegExp Objectis to provide simple regular expression support
5
last updated 12/10/2017
Rem Statementto specify that following of the line is an included explanatory comment in a program.
1
last updated 11/18/2017
Remove Methodis to remove an element with the specified key from an associated Dictionary Object.
last updated 12/9/2017
RemoveAll Methodis to remove all elements of the associated Dictionary Object.
last updated 12/9/2017
Replace FunctionCreate a string from a substring specified by start of a given expression after replacing a specified find string with a given replacewith string according to the specified count and compare.
2
last updated 9/20/2017
Replace Methodis to replaces the given string1 found in a regular expression search with the specified string2.
5
last updated 12/11/2017
RGB FunctionCreate a whole number from the given red, green, and blue argument according to the RGB color converting rule.
2
last updated 9/21/2017
Right FunctionCreate a substring of specified character length from the right side of a given string.
1
last updated 9/21/2017
RightB FunctionCreate a substring of specified Byte length from the right side of a given string.
1
last updated 9/21/2017
Rnd FunctionGet a random number according to a specified number setting.
1
last updated 9/21/2017
RootFolder Propertyis to return a Folder object representing the root folder of a drive of associated Drive Object.
last updated 12/15/2017
Round FunctionCreate a numeric value of a given numeric expression according to the number of decimal places specified by numdecimalplace using the round to nearest method and following the round half to even rule that is to return the possible numeric value closest to the value of the numeric expression with the appropriate number of decimal, and following the closest to the round halt to even rule when the numeric expression is exactly halfway between two possible rounded values.
2
last updated 9/21/2017
RTrim FunctionCreate a right trimmed string from a given string expression by removing all trailing spaces on the right side of a string.
1
last updated 9/16/2017
ScriptEngine FunctionCreate a String from the scripting engine of the local system to indicate the scripting language in use.
2
last updated 9/21/2017
ScriptEngineBuildVersion FunctionCreate a number from the scripting engine of the local system to indicate the build version number of scripting language in use.
2
last updated 9/21/2017
ScriptEngineMajorVersion FunctionCreate a number from the scripting engine of the local system to indicate the major version number of scripting language in use.
2
last updated 9/21/2017
ScriptEngineMinorVersion FunctionCreate a number from the scripting engine of the local system to indicate the minor version number of scripting language in use.
2
last updated 9/21/2017
Second FunctionCreate an Integer with value between 0 and 59 inclusive for representing the 60 seconds of a minute respectively from a given time expression by getting the second part of the given time expression.
1
last updated 9/21/2017
Select Case Statementto execute one of several groups of statements, depending on the value of a testexpression.
1
last updated 11/24/2017
SerialNumber Propertyis to return the decimal serial number used to uniquely identify a disk volume of a drive or a network share of associated Drive Object.
last updated 12/15/2017
Set Statementto assigns an object reference to a variable or property, or to associate a procedure reference with an event.
1
last updated 11/18/2017
SetLocale FunctionCreate a number from the scripting engine of the local system to indicate the current locale ID value of scripting language in use. And then set the global locale ID value of scripting language according to the specified lcid for the scripting engine of the local system.
5
last updated 9/21/2017
Sgn FunctionCreate an integer to indicate the sign of a given number.
1
last updated 9/21/2017
ShareName Propertyis to returns the network share name of a drive of associated Drive Object.
last updated 12/15/2017
ShortName Propertyis to return the short name of the associated Folder or File Object for programs require the earlier 8.3 naming convention.
last updated 12/16/2017
ShortPath Propertyis to return the short path of the associated Folder or File Object for programs require the earlier 8.3 naming convention.
last updated 12/16/2017
Sin FunctionConverts a given number to the sine of the given number by taking the given number as an angle in radian.
1
last updated 9/21/2017
Size Propertyis to return the size in btyes of a folder including all files and subfolders, or a file of corresponding associated Folder or File Object.
last updated 12/16/2017
Skip Methodis to skip a given characters number of characters when reading from a file of the associated TextStream Object.
last updated 12/16/2017
SkipLine Methodis to skip the next line when reading from a file of the associated TextStream Object.
last updated 12/16/2017
Source Propertyis to set, if optional stringexpression is given, or to return the Source Property of Err Object containing the object or application name that originally generated the error.
1
last updated 12/10/2017
Space FunctionCreate a string of a specified number of repeating spaces.
1
last updated 9/21/2017
Split FunctionCreate a zero-based one-dimensional array from a given expression by breaking the string of the given expression from the beginning to the end into a list of ordered substring elements which is then arranged as members of the array.
2
last updated 9/16/2017
Sqr FunctionCreate the square root of a given number.
1
last updated 9/21/2017
Stop Statementto suspends execution for debugging.
3
last updated 11/24/2017
StrComp FunctionCreate a value to indicate the result of comparison between given string1 and string2 according to the specified compare setting.
1
last updated 9/21/2017
String FunctionCreate a string of a specified number of the repeating character obtained from the first character of a given string expression specified by character argument.
1
last updated 9/21/2017
StrReverse FunctionCreate a string from a given string1 by reversing the character order of the given string1 from the end to the beginning.
2
last updated 9/21/2017
Sub Statementto declares the name, arguments, and code that form the body of a Sub procedure.
1
last updated 11/24/2017
SubFolders Propertyis to retrun a Folders collection of all folders including those with hidden and system file attributes set inside a folder of associated Folder Objecter.
last updated 12/16/2017
SubMatches Collectionis to provide access to all submatches inside a match returned by a regular expression search as a single object.
5.5
last updated 12/12/2017
SubMatches Propertyis to return all submatches of associated Match Object in form of SubMatches Object, called SubMatches Collection..
5
last updated 12/11/2017
Tan FunctionConverts a given number to the tangent of the given number by taking the given number as an angle in radian.
1
last updated 9/21/2017
Terminate EventAn Event trigger caused by the termination of an instance of Class Object. When the Event is fired, the Event will be triggered and the Event handler uses the Object_Eventname naming convention rule to call any subroutine with the correct naming convention.
5
last updated 12/8/2017
Test Methodis to executes a regular expression search against a given string, and to return a Boolean value indicating if a pattern match was found.
5
last updated 12/11/2017
TextStream Objectis to provide sequential access to the text content of a file.
last updated 12/16/2017
Time FunctionCreate a time part of the date from the current date of a local computer system with format according to the time setting of the local computer system.
1
last updated 9/21/2017
Timer FunctionCreate a numeric value from time part of current local system time by counting the elapsed seconds since 12:00 AM, midnight, or 00:00.
5
last updated 9/21/2017
TimeSerial FunctionCreate a date from given numeric expressions of hour, minute, and second.
1
last updated 9/21/2017
TimeValue FunctionCreate the time part of a date from a given date string.
1
last updated 9/21/2017
TotalSize Propertyis to return the total space in bytes of a drive or network share of associated Drive Object..
last updated 12/15/2017
Trim FunctionCreate a trimmed string from a given string expression by removing both leading and trailing spaces on both sides of a string.
1
last updated 9/16/2017
Trueto specify a Boolean True
1
last updated 11/26/2017
Type Propertyis to return the type of a folder or file of associated Folder or File Object..
last updated 12/16/2017
TypeName FunctionCreate a String from a given varname to indicate the Variant subtype name of a variable.
2
last updated 9/21/2017
UBound FunctionCreate a number from a given arrayname to represent the largest available subscript of the given arrayname according to the specified dimension.
1
last updated 9/21/2017
UCase FunctionCreate a string from a given string by converting all lowercase letters of the given string to uppercase letters.
1
last updated 9/16/2017
Unescape FunctionDecodes a string encoded with the Escape function.
5
last updated 9/21/2017
Value Propertyis to return the value or text of a match of associated Match Object found in a search string.
5
last updated 12/11/2017
VarType FunctionCreate an Integer from a given varname to indicate the subtype of a variable.
1
last updated 9/21/2017
vbAbortto specify Abort button was clicked.
2
last updated 11/25/2017
vbAbortRetryIgnoreto display Abort, Retry, and Ignore buttons.
2
last updated 11/25/2017
vbApplicationModalApplication modal. The user must respond to the message box before continuing work in the current application.
2
last updated 11/25/2017
vbArrayto specify an Array
2
last updated 11/26/2017
vbBinaryCompare Constantto perform a binary comparison
2
last updated 11/25/2017
vbBlack ConstantColor Black
2
last updated 11/25/2017
vbBlue ConstantColor Blue
2
last updated 11/25/2017
vbBooleanto specify a Boolean subtype
2
last updated 11/26/2017
vbByteto specify a Byte subtype
2
last updated 11/26/2017
vbCancelto specify Cancel button was clicked.
2
last updated 11/25/2017
vbCrCarriage return.
2
last updated 11/25/2017
vbCriticalto display Critical Message icon.
2
last updated 11/25/2017
VbCrLfCarriage return–linefeed combination.
2
last updated 11/25/2017
vbCurrencyto specify a Currency subtype
2
last updated 11/26/2017
vbCyan ConstantColor Cyan
2
last updated 11/25/2017
vbDataObjectto specify a Data access object
2
last updated 11/26/2017
vbDateto specify a Date subtype
2
last updated 11/26/2017
vbDecimalto specify a Decimal subtype
2
last updated 11/26/2017
vbDefaultButton1to specify First button is the default.
2
last updated 11/25/2017
vbDefaultButton2to specify Second button is the default.
2
last updated 11/25/2017
vbDefaultButton3to specify Third button is the default.
2
last updated 11/25/2017
vbDefaultButton4to specify Fourth button is the default.
2
last updated 11/25/2017
vbDoubleto specify a Double subtype
2
last updated 11/26/2017
vbEmptyto specify an Uninitialized variable
2
last updated 11/26/2017
vbErrorto specify an Error subtype
2
last updated 11/26/2017
vbExclamationto display Warning Message icon.
2
last updated 11/25/2017
vbFalseto specify False
2
last updated 11/26/2017
vbFirstFourDays Constantto use the first week that has at least four days in the new year as the first week of the year..
2
last updated 11/25/2017
vbFirstFullWeek Constantto use the first full week of the new year as the first week of the year.
2
last updated 11/25/2017
vbFirstJan1 Constantto use the week in which January 1 occurs as the first week of the year.
2
last updated 11/25/2017
vbFormFeedForm feed; not useful in Microsoft Windows.
2
last updated 11/25/2017
vbFriday ConstantFriday
2
last updated 11/25/2017
vbGeneralDate Constantto display a date and/or time using the GeneralDate format specified in local computer's system settings. For real numbers, display a date and time. If there is no fractional part, display only a date. If there is no integer part, display time only.
2
last updated 11/25/2017
vbGreen ConstantColor Green
2
last updated 11/25/2017
vbIgnoreto specify Ignore button was clicked.
2
last updated 11/25/2017
vbInformationto display Information Message icon.
2
last updated 11/25/2017
vbIntegerto specify an Integer subtype
2
last updated 11/26/2017
vbLfLine feed.
2
last updated 11/25/2017
vbLongto specify a Long subtype
2
last updated 11/26/2017
vbLongDate Constantto display a date using the LongDate format specified in local computer's regional settings.
2
last updated 11/25/2017
vbLongTime Constantto display a date using the LongTime format specified in local computer's regional settings.
2
last updated 11/25/2017
vbMagenta ConstantColor Magenta
2
last updated 11/25/2017
vbMonday ConstantMonday
2
last updated 11/25/2017
vbNewLinePlatform-specific newline character; whatever is appropriate for the platform.
2
last updated 11/25/2017
vbNoto specify No button was clicked.
2
last updated 11/25/2017
vbNullto specify a variable containing no valid data
2
last updated 11/26/2017
vbNullCharCharacter having the value 0.
2
last updated 11/25/2017
vbNullStringNot the same as a zero-length string (""); used for calling external procedures.
2
last updated 11/25/2017
vbObjectto specify an Object
2
last updated 11/26/2017
vbObjectError Constantthe reference value for creating user-defined error numbers which should be greater than this value.
2
last updated 11/25/2017
vbOKto specify OK button was clicked.
2
last updated 11/25/2017
vbOKCancelto display OK and Cancel buttons.
2
last updated 11/25/2017
vbOKOnly Constantto display OK button only.
2
last updated 11/25/2017
vbQuestionto display Warning Query icon.
2
last updated 11/25/2017
vbRed ConstantColor Red
2
last updated 11/25/2017
vbRetryto specify Retry button was clicked.
2
last updated 11/25/2017
vbRetryCancelto display Retry and Cancel buttons.
2
last updated 11/25/2017
vbSaturday ConstantSaturday
2
last updated 11/25/2017
vbShortDate Constantto display a date using the ShortDate format specified in local computer's regional settings.
2
last updated 11/25/2017
vbShortTime Constantto display a date using the ShortTime format specified in local computer's regional settings.
2
last updated 11/25/2017
vbSingleto specify a Single subtype
2
last updated 11/26/2017
vbStringto specify a String subtype
2
last updated 11/26/2017
vbSunday ConstantSunday
2
last updated 11/25/2017
vbSystemModalSystem modal. On Win16 systems, all applications are suspended until the user responds to the message box. On Win32 systems, this constant provides an application modal message box that always remains on top of any other programs you may have running.
2
last updated 11/25/2017
vbTabHorizontal tab.
2
last updated 11/25/2017
vbTextCompare Constantto perform a text comparison
2
last updated 11/25/2017
vbThursday ConstantThursday
2
last updated 11/25/2017
vbTrueto specify True
2
last updated 11/26/2017
vbTuesday ConstantTuesday
2
last updated 11/25/2017
vbUseDefaultto use Default from computer's regional settings
2
last updated 11/26/2017
vbUseSystem Constantto use National Language Support (NLS) API setting as the first week of the year..
2
last updated 11/25/2017
vbUseSystemDayOfWeek Constantto use the day of the week specified in local system settings as the first day of the week.
2
last updated 11/25/2017
vbVariantto specify a Variant (used only for arrays of variants)
2
last updated 11/26/2017
vbVerticalTabVertical tab; not useful in Microsoft Windows.
2
last updated 11/25/2017
vbWednesday ConstantWednesday
2
last updated 11/25/2017
vbWhite ConstantColor White
2
last updated 11/25/2017
vbYellow ConstantColor Yellow
2
last updated 11/25/2017
vbYesto specify Yes button was clicked.
2
last updated 11/25/2017
vbYesNoto display Yes and No buttons.
2
last updated 11/25/2017
vbYesNoCancelto display Yes, No, and Cancel buttons.
2
last updated 11/25/2017
VolumeName Propertyis to set, if optional newname is given, or to return the volume name of a drive of associated Drive Object.
last updated 12/15/2017
Weekday FunctionCreate an Integer with value between 1 and 7 inclusive for representing the 7 days of a week respectively from a given date expression by getting the default weekday part of the given date expression according to firstdayofweek setting.
1
last updated 9/21/2017
WeekdayName FunctionCreate a String from a given weekday expression by taking the given weekday expression as the numeric designation of the week between 1 and 7 inclusive based on the specified firstdayofweek setting, and with value representing the corresponding weekday of a week according to the specified abbreviate setting.
2
last updated 9/21/2017
While…Wend Statementto repeat a block of statements while a condition is True.
1
last updated 11/20/2017
With Statementto execute a series of statements on a single object.
5
last updated 11/24/2017
Write Methodis to write a specified string to a file of the associated TextStream Object.
last updated 12/16/2017
Write Methodis to send strings given str1, str2, …, and strN strings to the script debugger, followed by a newline character..
3
last updated 12/10/2017
WriteBlankLines Methodis to write a given lines number of newline characters to a a file of the associated TextStream Object.
last updated 12/16/2017
WriteLine Methodis to write a given string and newline character to a file of the associated TextStream Object.
last updated 12/17/2017
WriteLine Methodis to send given str1, str2, …, and strN strings to the script debugger, followed by a newline character.
3
last updated 12/10/2017
Xor OperatorXor logic operator is used to create a value by performing a logical exclusion on two logic expressions or bitwise logical exclusion on two numeric digit expressions.
1
last updated 11/18/2017
Year FunctionCreate a Integer from a given date expression by getting the year part of the given date expression.
1
last updated 9/21/2017

Related Host Application

Host applicationVBScript version
Internet Explorer 3.01.0
Internet Information Server 3.02.0
Internet Explorer 4.03.0
Internet Information Server 4.03.0
Visual Studio 6.04.0
Internet Explorer 5.05.0
Internet Explorer 5.015.1
Windows 20005.1
Internet Explorer 5.55.5
Internet Explorer 6.05.6
Windows XP (through SP2)5.6
Internet Explorer 7.05.7
Windows XP SP35.7
Windows Vista5.7
Internet Explorer 8.05.8
Windows 75.8
Windows 85.8

Sources

Sideway BICK Blog

09/03


Copyright © 2000-2020 Sideway . All rights reserved Disclaimerslast modified on 26 January 2013