When multiple computers are added to a domain/AD it is important not to give administrative rights to everyone. This will avoid anyone accidentally deleting... Read more
The FileSystemObject (FSO) allows you to manipulate the file system of Windows. The use of the FileSystemObject object model is done by creating an instance... Read more
VBScript is a language that integrate with container applications, called as "Scripting hosts". Thus the container provides an execution environment and a... Read more
The WshNetwork object contains information about the Microsoft Windows Network, as well as methods to manage (login, logout) printers and network shares.... Read more
Operators are symbols used to manipulate variables, that is to say, perform operations, evaluate, compare ... operators to perform calculation comparison... Read more
A constant is a name (usually an easy to remember one), replacing a value (number, string, etc..) that doesn't change. The objective of a constant is... Read more
A function refers to a subroutine that allows the execution of a set of instructions by simply calling in the body of the main program. This notion of using... Read more
Microsoft COM (Component Object Model) is a standard for defining API object, that is to say, allowing applications to communicate through objects... Read more
I want to know how to make 10 text box or label box array in vb6.0. Declare an Array(10) Single or Double: Input(n) x$ Array(n) = val(x$) open "file.txt"... Read more
The type of a variable defines how the computer stores the variable in memory, that is to say the sequence of 0 and 1 in the memory cells. VBScript includes... Read more
A variable is an object identified by its name, which may contain data that can be modified during program execution. Actually, it is an area of the memory... Read more
Conditional structures refers to the instructions that test whether a condition is true or not, that is to say, if the value of the expression is 0 or 1... Read more
Function DescriptionFilter(InputStrings, Value [, Include</br>[, Compare]])Selects strings from an array of strings (InputStrings), based on the criteria... Read more
FonctionDescriptionArray(arglist)Creates a Variant containing an array. The arglist argument is a list of values ??separated by commas, that will be... Read more
The File object is obtained using FileSystemObject. It is used to manipulate or obtain information about a file. To use a File object simply: Create an... Read more
The Folder object is obtained using a method of the FolderSystemObject object. It can be used to obtain information on a directory. To use a Folder object... Read more
VBScript (Visual Basic Scripting Edition) is a subset of the Visual Basic for Applications (VBA) language, a proprietary language from Microsoft designed to... Read more
VBScript has five keywords corresponding to specific values ??for the variables. The Empty the keyword corresponds to the uninitialized state of a variable,... Read more
FunctionDescriptionDateReturns the system dateDateAdd(interval, number, date)Adds a time interval (interval) to a date (date). The interval is a string that... Read more
FunctionDescriptionAbs(number)Returns the absolute value of a number.Atn(number)Returns the arctangent of a number.Cos(number)Returns the cosine of a... Read more