Function | Abs | ||||||||
Description | Returns the absolute value of a number. | ||||||||
Parameters |
|
||||||||
Returns | Null / same data type as number | ||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Math | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print Abs(True)
1
|
||||||||
Try it |
|
||||||||
See also | Sgn |
Sub | AppActivate | ||||||||||||||||||
Description | Activates - changes the focus to - a window with the given title. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | Interaction | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | AppActivate "Untitled - Notepad" | ||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | SendKeys, Shell |
Function | Asc | ||||||||
Description | Returns the code of the first character of the given string. | ||||||||
Parameters |
|
||||||||
Returns | Integer | ||||||||
Errors | 5, 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print Asc("Adam")
65
|
||||||||
Try it |
|
||||||||
See also | AscB, AscW, Chr |
Function | AscB | ||||||||
Description | Returns the first byte of the given string. | ||||||||
Parameters |
|
||||||||
Returns | Byte | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 4.0 | ||||||||
Example |
Debug.Print AscB("Adam")
65
|
||||||||
Try it |
|
||||||||
See also | Asc, AscW, Chr |
Function | AscW | ||||||||
Description | Returns the Unicode code of the first character of the given string. | ||||||||
Parameters |
|
||||||||
Returns | Integer | ||||||||
Errors | 5, 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 5.0 | ||||||||
Example |
Debug.Print AscW("Adam")
65
|
||||||||
Try it |
|
||||||||
See also | Asc, AscB, Chr |
Function | Atn | ||||||||
Description |
Returns the arctangent of a number in radians. To convert radians to degrees, multiply it by 180 then divide the result by 3.14159265358979. |
||||||||
Parameters |
|
||||||||
Returns | Double | ||||||||
Errors | 5, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Math | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print Atn(1) * 4
3.14159265358979
|
||||||||
Try it |
|
||||||||
See also | Cos, Sin, Tan |
Sub | Beep |
Description | Produces an electronical tone in your computer. |
Parameters | - |
Errors | - |
Status | Implemented |
Module | Interaction |
Since | VB 1.0 |
Example | Beep |
Try it |
|
See also |
Function | Bin | ||||||||
Description | Returns a string that represents a number's binary value. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / String) | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Hex, Oct |
Function | Bin$ | ||||||||
Description | Returns a string that represents a number's binary value. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Hex, Oct |
Property | Calendar |
Description | Specify which calendar to use in your application. |
Returns | VbCalendar |
Errors | 5 |
Status | Implemented |
Module | DateTime |
Since | VB 6.0 |
Example |
Debug.Print Format(Date, "yyyy-mm-dd")
Calendar = vbCalHijri Debug.Print Format(Date, "yyyy-mm-dd")
1987-12-30
1408-05-10 |
Try it |
|
See also |
Function | CallByName | ||||||||||||||||||||||||||||||||||||||
Description | Manipulates an object's properties, or calls its methods using their names. | ||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||
Returns | If the method is a Sub or a property Let or Set, returns Empty, otherwise the retrived value as a Variant. | ||||||||||||||||||||||||||||||||||||||
Errors | 5, 13, 91, 450 | ||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||
Module | Interaction | ||||||||||||||||||||||||||||||||||||||
Since | VB 6.0 | ||||||||||||||||||||||||||||||||||||||
Example |
Dim c As New Collection
Debug.Print CallByName(c, "Count", vbGet)
0
|
||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||
See also |
Function | CBool | ||||||||
Description | Converts expression to Boolean. | ||||||||
Parameters |
|
||||||||
Returns | Boolean | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 4.0 | ||||||||
Example |
Debug.Print CBool(1)
True
|
||||||||
Try it |
|
||||||||
See also |
Function | CByte | ||||||||
Description | Converts expression to Byte. | ||||||||
Parameters |
|
||||||||
Returns | Byte | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 4.0 | ||||||||
Example |
Debug.Print CByte("42")
42
|
||||||||
Try it |
|
||||||||
See also |
Function | CCur | ||||||||
Description | Converts expression to Currency. | ||||||||
Parameters |
|
||||||||
Returns | Currency | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print CCur(3.14159)
3.1416
|
||||||||
Try it |
|
||||||||
See also |
Function | CDate | ||||||||
Description | Converts expression to Date. | ||||||||
Parameters |
|
||||||||
Returns | Date | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 4.0 | ||||||||
Example |
Debug.Print CDate("1987-12-30 01:23:45")
12/30/1987 01:23:45
|
||||||||
Try it |
|
||||||||
See also |
Function | CDbl | ||||||||
Description | Converts expression to Double. | ||||||||
Parameters |
|
||||||||
Returns | Double | ||||||||
Errors | 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print CDbl("3.14159")
3.14159
|
||||||||
Try it |
|
||||||||
See also |
Function | CDec | ||||||||
Description | Converts expression to Decimal. | ||||||||
Parameters |
|
||||||||
Returns | Decimal | ||||||||
Errors | 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 5.0 | ||||||||
Example |
Debug.Print CDec("-123456789012345678901234.5678")
-123456789012345678901234.5678
|
||||||||
Try it |
|
||||||||
See also |
Function | CErr | ||||||||
Description | Converts expression to Error. | ||||||||
Parameters |
|
||||||||
Returns | Error | ||||||||
Errors | 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 4.0 | ||||||||
Example |
Debug.Print CvErr(42)
Error 42
|
||||||||
Try it |
|
||||||||
See also | CVErr, IsError |
Sub | ChDir | ||||||||
Description | Changes the current directory. | ||||||||
Parameters |
|
||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print CurDir
ChDir "C:\New Dir" Debug.Print CurDir
C:\Windows\System32
C:\New Dir |
||||||||
Try it |
|
||||||||
See also | ChDrive, CurDir, Dir, MkDir, RmDir |
Sub | ChDrive | ||||||||
Description | Changes the current drive. | ||||||||
Parameters |
|
||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print CurDir
ChDrive "D" Debug.Print CurDir
C:\Windows\System32
D:\ |
||||||||
Try it |
|
||||||||
See also | ChDir, CurDir, MkDir, RmDir |
Function | Choose | ||||||||||||||||||
Description | Returns a value from a list according to index. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns |
Value at the index position in the list as a Variant. If index is lower than 1 or greater than the count of elements in choice, Null is returned. |
||||||||||||||||||
Errors | 13, 91, 94, 450 | ||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | Interaction | ||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||
Example |
Debug.Print Choose(2, "eenie", "meanie", "minie", "moe")
meanie
|
||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | IIf, Switch |
Function | Chr | ||||||||
Description | Returns a character according to the given numeric code in the system's code page. | ||||||||
Parameters |
|
||||||||
Returns | Variant (String) | ||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print Chr(65)
A
|
||||||||
Try it |
|
||||||||
See also | Asc, Chr$, Str |
Function | Chr$ | ||||||||
Description | Returns a character according to the given numeric code in the system's code page. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print Chr$(65)
A
|
||||||||
Try it |
|
||||||||
See also | Asc, Chr, Str |
Function | ChrB | ||||||||
Description | Returns a character according to the given numeric code in the system's code page. | ||||||||
Parameters |
|
||||||||
Returns | Variant (String) | ||||||||
Status | Not implemented | ||||||||
Module | Strings | ||||||||
Since | VB 4.0 | ||||||||
Example |
Debug.Print ChrB(65)
A
|
||||||||
Try it |
|
||||||||
See also | AscB, ChrB$, Str |
Function | ChrB$ | ||||||||
Description | Returns a character according to the given numeric code in the system's code page. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Status | Not implemented | ||||||||
Module | Strings | ||||||||
Since | VB 4.0 | ||||||||
Example |
Debug.Print ChrB$(65)
A
|
||||||||
Try it |
|
||||||||
See also | AscB, ChrB, Str |
Function | ChrW | ||||||||
Description | Returns an Unicode character according to the given numeric code. | ||||||||
Parameters |
|
||||||||
Returns | Variant (String) | ||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 5.0 | ||||||||
Example |
Debug.Print ChrW(65)
A
|
||||||||
Try it |
|
||||||||
See also | AscW, ChrW$, Str |
Function | ChrW$ | ||||||||
Description | Returns an Unicode character according to the given numeric code. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 5.0 | ||||||||
Example |
Debug.Print ChrW$(65)
A
|
||||||||
Try it |
|
||||||||
See also | AscW, ChrW, Str |
Function | CInt | ||||||||
Description | Converts expression to Integer. | ||||||||
Parameters |
|
||||||||
Returns | Integer | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print CInt(3.14159)
3
|
||||||||
Try it |
|
||||||||
See also |
Function | CLng | ||||||||
Description | Converts expression to Long. | ||||||||
Parameters |
|
||||||||
Returns | Long | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print CLng(1.5)
2
|
||||||||
Try it |
|
||||||||
See also |
Function | CLngLng | ||||||||
Description | Converts expression to LongLong. | ||||||||
Parameters |
|
||||||||
Returns | LongLong | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 6.7 | ||||||||
Example |
Debug.Print CLngLng("9000000000000000000")
9000000000000000000
|
||||||||
Try it |
|
||||||||
See also |
Statement | Close | ||||||||
Description | Closes the given file handlers, or all open files if none is provided. | ||||||||
Parameters |
|
||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Open, Reset |
Function | CObj | ||||||||
Description | Converts expression to Object. | ||||||||
Parameters |
|
||||||||
Returns | Object | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print CLng(1.5)
2
|
||||||||
Try it |
|
||||||||
See also |
Function | Command |
Description | Returns the command line arguments given when the application was started. |
Parameters | - |
Returns | Variant (String) |
Errors | 450 |
Status | Implemented |
Module | Interaction |
Since | VB 1.0 |
Example |
Debug.Print Command
/c
|
Try it |
|
See also | Command$ |
Function | Command$ |
Description | Returns the command line arguments given when the application was started. |
Parameters | - |
Returns | String |
Errors | 450 |
Status | Implemented |
Module | Interaction |
Since | VB 1.0 |
Example |
Debug.Print Command$
/c
|
Try it |
|
See also | Command |
Function | Cos | ||||||||
Description | Returns the cosine of an angle. | ||||||||
Parameters |
|
||||||||
Returns | Double | ||||||||
Errors | 5, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Math | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print Cos(3.14159265358979)
-1
|
||||||||
Try it |
|
||||||||
See also | Atn, Sin, Tan |
Function | CreateObject | ||||||||||||||||||
Description | Instantiates an ActiveX object. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | Variant (Object) | ||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | Interaction | ||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||
Example |
Dim fs As Object
Set fs = CreateObject("Scripting.FileSystemObject") Debug.Print TypeName(fs) FileSystemObject
|
||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | GetObject |
Function | CSByte | ||||||||
Description | Converts expression to SByte. | ||||||||
Parameters |
|
||||||||
Returns | SByte | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 6.7 | ||||||||
Example |
Debug.Print CSByte("42")
42
|
||||||||
Try it |
|
||||||||
See also |
Function | CSng | ||||||||
Description | Converts expression to Single. | ||||||||
Parameters |
|
||||||||
Returns | Single | ||||||||
Errors | 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print CSng("1.5")
1.5
|
||||||||
Try it |
|
||||||||
See also |
Function | CStr | ||||||||
Description | Converts expression to String. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 2.0 | ||||||||
Example |
Debug.Print CStr(#1987-12-30#)
12/30/1987
|
||||||||
Try it |
|
||||||||
See also |
Function | CUInt | ||||||||
Description | Converts expression to UInteger. | ||||||||
Parameters |
|
||||||||
Returns | UInteger | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 6.7 | ||||||||
Example |
Debug.Print CUInt(3.14159)
3
|
||||||||
Try it |
|
||||||||
See also |
Function | CULng | ||||||||
Description | Converts expression to ULong. | ||||||||
Parameters |
|
||||||||
Returns | ULong | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 6.7 | ||||||||
Example |
Debug.Print CULng(1.5)
2
|
||||||||
Try it |
|
||||||||
See also |
Function | CULngLng | ||||||||
Description | Converts expression to ULongLong. | ||||||||
Parameters |
|
||||||||
Returns | ULongLong | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 6.7 | ||||||||
Example |
Debug.Print CULngLng("9000000000000000000")
9000000000000000000
|
||||||||
Try it |
|
||||||||
See also |
Function | CurDir | ||||||||
Description | Returns the current directory for the given drive. | ||||||||
Parameters |
|
||||||||
Returns | Variant (String) | ||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print CurDir("D")
D:\
|
||||||||
Try it |
|
||||||||
See also | ChDir, ChDrive, MkDir, RmDir |
Function | CurDir$ | ||||||||
Description | Returns the current directory for the given drive. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print CurDir("D")
D:\
|
||||||||
Try it |
|
||||||||
See also | ChDir, ChDrive, MkDir, RmDir |
Function | CVar | ||||||||
Description | Converts expression to Variant. | ||||||||
Parameters |
|
||||||||
Returns | Variant | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 2.0 | ||||||||
Example |
Debug.Print CVar(-1)
-1
|
||||||||
Try it |
|
||||||||
See also |
Function | CVDate | ||||||||
Description | Converts expression to Date. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / Date) | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 2.0 | ||||||||
Example |
Debug.Print CDate("1987-12-30 01:23:45")
12/30/1987 01:23:45
|
||||||||
Try it |
|
||||||||
See also |
Function | CVErr | ||||||||
Description | Converts expression to Error. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Error) | ||||||||
Errors | 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 4.0 | ||||||||
Example |
Debug.Print CvErr(42)
Error 42
|
||||||||
Try it |
|
||||||||
See also | CErr, IsError |
Property | Date |
Description | Returns or sets system's date. |
Parameters | - |
Returns | Variant (Date) |
Errors | 6, 13, 91, 94, 450 |
Status | Implemented |
Module | DateTime |
Since | VB 1.0 |
Example |
Debug.Print Date
01/23/2022
|
Try it |
|
See also | Date$, Format, Now, Time |
Property | Date$ |
Description | Returns or sets system's date. |
Parameters | - |
Returns | String |
Errors | 6, 13, 91, 94, 450 |
Status | Implemented |
Module | DateTime |
Since | VB 1.0 |
Example |
Debug.Print Date$
01/23/2022
|
Try it |
|
See also | Date, Format, Now, Time |
Function | DateAdd | ||||||||||||||||||||||||||||||||||||||||||||
Description | Returns a Variant with a date to which a time interval has been added. | ||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||
Returns | Variant (Null / Date) | ||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||
Module | DateTime | ||||||||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||||||||
Example |
Debug.Print DateAdd("d", -1, #1987-12-30#)
12/29/1987
|
||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||
See also | DateDiff, DatePart, Day, Format, Now, Weekday, Year, |
Function | DateDiff | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Returns the difference between two dates. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | Variant (Null / Long) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 13, 91, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | DateTime | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example |
Debug.Print DateDiff("yyyy", #2001-01-01#, #2000-12-31#)
-1
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also | DateAdd, DatePart, Day, Format, Now, Weekday, Year |
Function | DatePart | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Extracts a part of a date, like its day, month, year, etc. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | Variant (Null / Integer) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | DateTime | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example |
Debug.Print DatePart("w", #2000-01-01#)
7
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also | DateAdd, DateDiff, Day, Format, Now, Weekday, Year |
Function | DateSerial | ||||||||||||||||||||||||||||
Description | Builds a date from the given year, month, and day. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | Variant (Date) | ||||||||||||||||||||||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||
Module | DateTime | ||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||
Example |
Debug.Print DateSerial(1987, 12, 30)
12/30/1987
|
||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also | Date, DateValue, Day, Month, Now, TimeSerial, TimeValue, Weekday, Year |
Function | DateTimeSerial | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Builds a date from the given year, month, day, hours, minutes, and seconds. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | Variant (Date) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | DateTime | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 6.7 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example |
Debug.Print DateSerial(1987, 12, 30, 1, 23, 45)
12/30/1987 1:23:45
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also | Date, DateValue, Day, Month, Now, TimeSerial, TimeValue, Weekday, Year |
Function | DateValue | ||||||||
Description | Converts a string to a date. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Date) | ||||||||
Errors | 13, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | DateTime | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print DateValue("Apr 05")
04/05/2022
|
||||||||
Try it |
|
||||||||
See also | Date, DateSerial, Day, Month, Now, TimeSerial, TimeValue, Weekday, Year |
Function | Day | ||||||||
Description | Returns an integer number that represents the weekday of the given date. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / Integer) | ||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | DateTime | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Date, Hour, Minute, Month, Now, Second, Weekday, Year |
Function | DDB | ||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Returns the asset's double-declining balance depreciation for a given period. | ||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | Double | ||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||
Module | Financial | ||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||
See also | FV, IPmt, IRR, MIRR, NPer, NPV, Pmt, PPmt, PV, Rate, SLN, SYD> |
Sub | DeleteSetting | ||||||||||||||||||||||||||||
Description | Removes a section or key setting from the Registry for an application. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Status | Not implemented | ||||||||||||||||||||||||||||
Module | Interaction | ||||||||||||||||||||||||||||
Since | VB 4.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also | GetAllSettings, GetSetting, SaveSetting |
Function | Dir | ||||||||||||||||||
Description | Finds a matching file, directory, or folder name and returns it. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | String | ||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | FileSystem | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | ChDir, CurDir |
Function | DoEvents |
Description | Allows the operating system to process additional events by yielding execution. |
Parameters | - |
Returns | Integer |
Status | Not implemented |
Module | Interaction |
Since | VB 1.0 |
Example | |
Try it |
|
See also | SendKeys |
Function | Environ | ||||||||
Description | Returns the value of a string that has been set to a variable in the environment. | ||||||||
Parameters |
|
||||||||
Returns | Variant (String) | ||||||||
Status | Not implemented | ||||||||
Module | Interaction | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Environ$ | ||||||||
Description | Returns the value of a string that has been set to a variable in the environment. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Status | Not implemented | ||||||||
Module | Interaction | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | EOF | ||||||||
Description | Returns a value indicating whether or not a file's end has been reached. | ||||||||
Parameters |
|
||||||||
Returns | Boolean | ||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Loc, LOF, Open |
Function | Error | ||||||||
Description | Returns the message associated with a given number in the range 0 to 65535. | ||||||||
Parameters |
|
||||||||
Returns | Variant (String) | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Error$ | ||||||||
Description | Returns the message associated with a given number in the range 0 to 65535. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Escape | ||||||||
Description |
Converts any non-ASCII character in a string to its heaxadecimal number preceded by '%'. |
||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 6.7 | ||||||||
Example |
Debug.Print Escape("a <> b")
a%20%3C%3E%20b
|
||||||||
Try it |
|
||||||||
See also | Unescape |
Function | Exp | ||||||||
Description | Returns Euler's number raised to the given number. | ||||||||
Parameters |
|
||||||||
Returns | Double | ||||||||
Errors | 5, 450 | ||||||||
Status | Implemented | ||||||||
Module | Math | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Log |
Function | FileAttr | ||||||||||||||||||||
Description |
Returns the mode used when opening the file represented by the given handler: 1 - Input 2 - Output 4 - Random 8 - Append 32 - Binary |
||||||||||||||||||||
Parameters |
|
||||||||||||||||||||
Returns | Long | ||||||||||||||||||||
Status | Not implemented | ||||||||||||||||||||
Module | FileSystem | ||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||
Example | |||||||||||||||||||||
Try it |
|
||||||||||||||||||||
See also | GetAttr, Open, SetAttr |
Sub | FileCopy | ||||||||||||||||||
Description | Creates a copy of a file. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | FileSystem | ||||||||||||||||||
Since | VB 2.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | Kill, Name |
Function | FileDateTime | ||||||||
Description | Returns the date and time of the last modification of a file. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Date) | ||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 2.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | FileLen, GetAttr, VarType |
Function | FileLen | ||||||||
Description | Returns the length a file occupies in hard drive measured in bytes. | ||||||||
Parameters |
|
||||||||
Returns | Long | ||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 2.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | FileDateTime, GetAttr, LOF |
Function | Filter | ||||||||||||||||||||||||||||||||||||||||||
Description | Filters an array of strings returning a new array containing the matches. | ||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||
Returns | Variant | ||||||||||||||||||||||||||||||||||||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||||||||||||||||
Since | VB 6.0 | ||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||
See also | Replace |
Function | Fix | ||||||||
Description |
Discards the fractionary part of a number returning it as an integer. Rounding is done in towards zero fashion. |
||||||||
Parameters |
|
||||||||
Returns | Variant (Null / same type as number)) | ||||||||
Errors | 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 6.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Int, Round |
Function | Format | ||||||||||||||||||||||||||||||||||||||||||
Description | Takes a number, a date, or a string and formats it according to the given pattern. | ||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||
Returns | Variant (String) | ||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 13, 91, 450 | ||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||
See also | Str |
Function | Format$ | ||||||||||||||||||||||||||||||||||||||||||
Description | Takes a number, a date, or a string and formats it according to the given pattern. | ||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||
Returns | Variant (String) | ||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 13, 91, 450 | ||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||
See also | Str |
Function | FormatCurrency | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Takes a number and formats it to currency. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | String | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 6.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also | FormatDateTime, FormatNumber, FormatPercent |
Function | FormatDateTime | ||||||||||||||||||
Description | Takes a date and formats it according to namedFormat. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | String | ||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | Strings | ||||||||||||||||||
Since | VB 6.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | FormatCurrency, FormatNumber, FormatPercent |
Function | FormatNumber | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Takes a number or a string and formats it to number. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | String | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 6.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also | FormatCurrency, FormatDateTime, FormatPercent |
Function | FormatPercent | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Takes a number or a string and formats it to percent. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | String | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 6.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also | FormatCurrency, FormatDateTime, FormatNumber |
Function | FreeFile | ||||||||
Description | Returns the next available file number that can be used by Open. | ||||||||
Parameters |
|
||||||||
Returns | Integer | ||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Open |
Function | FV | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Returns the value of an annuity in the future. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | Double | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | Financial | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
See also | DDB, IPmt, IRR, MIRR, NPer, NPV, Pmt, PPmt, PV, Rate, SLN, SYD |
Function | GetAllSettings | ||||||||||||||||||
Description | Returns an array of key name and value pairs from a Registry entry for an application. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | Variant | ||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | Interaction | ||||||||||||||||||
Since | VB 4.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | DeleteSetting, GetSetting, SaveSetting |
Function | GetAttr | ||||||||
Description | Returns a file's or directory's attributes. | ||||||||
Parameters |
|
||||||||
Returns | VbFileAttribute | ||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 2.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | FileAttr, SetAttr |
Function | GetObject | ||||||||||||||||||
Description | Returns an ActiveX object reference either from a file or a running program. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | Variant (Object) | ||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | Interaction | ||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | CreateObject |
Function | GetSetting | ||||||||||||||||||||||||||||||||||||||
Description | Returns the value of a key setting from an application's Registry entry. | ||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||
Returns | String | ||||||||||||||||||||||||||||||||||||||
Status | Not implemented | ||||||||||||||||||||||||||||||||||||||
Module | Interaction | ||||||||||||||||||||||||||||||||||||||
Since | VB 4.0 | ||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||
See also | DeleteSetting, GetAllSettings, SaveSetting |
Function | Hex | ||||||||
Description | Returns a string that represents a number's hexadecimal value. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / String) | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Bin, Oct |
Function | Hex$ | ||||||||
Description | Returns a string that represents a number's hexadecimal value. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Bin, Oct |
Function | Hour | ||||||||
Description | Returns an integer number that represents the hour of the given date. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / Integer) | ||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | DateTime | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Str |
Function | IIf | ||||||||||||||||||||||||||||
Description | Returns truePart if expression is true, otherwise returns falsePart. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | Variant | ||||||||||||||||||||||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||
Module | Interaction | ||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also | Choose, Switch |
Function | IMEStatus |
Description | Returns the current Input Method Editor mode. |
Parameters | - |
Returns | VbIMEStatus |
Status | Not implemented |
Module | Information |
Since | VB 4.0 |
Example | |
Try it |
|
See also |
Statement | Input | ||||||||
Description | Returns a String with characters from a file that has been opened in Input or Binary mode. | ||||||||
Parameters |
|
||||||||
Returns | |||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Statement | Input$ | ||||||||
Description | Returns a String with characters from a file that has been opened in Input or Binary mode. | ||||||||
Parameters |
|
||||||||
Returns | |||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Statement | InputB | ||||||||
Description | Returns byte data from a file that has been opened in Input or Binary mode | ||||||||
Parameters |
|
||||||||
Returns | |||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Statement | InputB$ | ||||||||
Description | Returns byte data from a file that has been opened in Input or Binary mode | ||||||||
Parameters |
|
||||||||
Returns | |||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | InputBox | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Displays a message in a dialog box and returns the text entered by the user. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | String | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | Interaction | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also | MsgBox |
Function | InStr | ||||||||||||||||||||||||||||||||||||||||
Description | Returns the 1-based index of the first occurrence of a string within another. | ||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||
Returns | Variant (Null/ Long) | ||||||||||||||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||
See also | InStrRev, StrComp |
Function | InStrB | ||||||||||||||||||||||||||||||||||||||||
Description | Returns the 1-based index of the first byte occurrence of a string within another. | ||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||
Returns | Variant (Null / Long) | ||||||||||||||||||||||||||||||||||||||||
Status | Not implemented | ||||||||||||||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||
See also | InStrRev, StrComp |
Function | InStrRev | ||||||||||||||||||||||||||||||||||||||||||
Description | Returns the 1-based index of the last occurrence of a string within another. | ||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||
Returns | Long | ||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||||||||||||||||
Since | VB 6.0 | ||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||
See also |
Function | Int | ||||||||
Description |
Discards the fractionary part of a number returning it as an integer. Rounding is done in towards negative infinity fashion. |
||||||||
Parameters |
|
||||||||
Returns | Variant (Null / same data type as number) | ||||||||
Errors | 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Fix, Round |
Function | IPmt | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Returns the annuity's interest payment for a given time. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | Double | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | Financial | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also | DDB, FV, IRR, MIRR, NPer, NPV, Pmt, PPmt, PV, Rate, SLN, SYD |
Function | IRR | ||||||||||||||||||||
Description | For a sequence of periodic cash flows, it returns the internal rate of return. | ||||||||||||||||||||
Parameters |
|
||||||||||||||||||||
Returns | Double | ||||||||||||||||||||
Errors | 5, 13, 450 | ||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||
Module | Financial | ||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||
Example | |||||||||||||||||||||
Try it |
|
||||||||||||||||||||
See also | DDB, FV, IPmt, MIRR, NPer, NPV, Pmt, PPmt, PV, Rate, SLN, SYD |
Function | IsArray | ||||||||
Description | Returns whether the variable is an array or not. | ||||||||
Parameters |
|
||||||||
Returns | Boolean | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Information | ||||||||
Since | VB 4.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Array, IsDate, IsEmpty, IsError, IsMissing, IsNull, IsNumeric, IsObject, TypeName, VarType, |
Function | IsDate | ||||||||
Description | Returns whether the variable can be converted to a date or not. | ||||||||
Parameters |
|
||||||||
Returns | Boolean | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Information | ||||||||
Since | VB 2.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Date, IsArray, IsEmpty, IsError, IsMissing, IsNull, IsNumeric, IsObject, TypeName, VarType, |
Function | IsEmpty | ||||||||
Description | Returns True if a variable contains the Empty value. | ||||||||
Parameters |
|
||||||||
Returns | Boolean | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Information | ||||||||
Since | VB 2.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | IsArray, IsDate, IsError, IsMissing, IsNull, IsNumeric, IsObject, TypeName, VarType, |
Function | IsError | ||||||||
Description | Returns True if a variable contains an error value. | ||||||||
Parameters |
|
||||||||
Returns | Boolean | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Information | ||||||||
Since | VB 4.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | CVError, IsArray, IsDate, IsEmpty, IsMissing, IsNull, IsNumeric, IsObject, TypeName, VarType, |
Function | IsLeapYear | ||||||||
Description | Returns True if the year in dateValue is a leap year. | ||||||||
Parameters |
|
||||||||
Returns | Boolean | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Information | ||||||||
Since | VB 6.7 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Array, IsDate, IsEmpty, IsError, IsMissing, IsNull, IsNumeric, IsObject, TypeName, VarType, |
Function | IsMissing | ||||||||
Description | Returns True if no valor has been provided for an optional argument. | ||||||||
Parameters |
|
||||||||
Returns | Boolean | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Information | ||||||||
Since | VB 4.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | IsArray, IsDate, IsEmpty, IsError, IsNull, IsNumeric, IsObject, TypeName, VarType, |
Function | IsNothing | ||||||||
Description | Returns True if a variable contains the Nothing value. | ||||||||
Parameters |
|
||||||||
Returns | Boolean | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Information | ||||||||
Since | VB 6.7 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | IsArray, IsDate, IsEmpty, IsError, IsMissing, IsNumeric, IsObject, TypeName, VarType, |
Function | IsNull | ||||||||
Description | Returns True if a variable contains the Null value. | ||||||||
Parameters |
|
||||||||
Returns | Boolean | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Information | ||||||||
Since | VB 2.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | IsArray, IsDate, IsEmpty, IsError, IsMissing, IsNumeric, IsObject, TypeName, VarType, |
Function | IsNumeric | ||||||||
Description | Returns True if an expression can be converted to a number. | ||||||||
Parameters |
|
||||||||
Returns | Boolean | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Information | ||||||||
Since | VB 2.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | IsArray, IsDate, IsEmpty, IsError, IsMissing, IsNull, IsObject, TypeName, VarType, |
Function | IsObject | ||||||||
Description | Returns True if a variable contains an object reference. | ||||||||
Parameters |
|
||||||||
Returns | Boolean | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Information | ||||||||
Since | VB 4.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | IsArray, IsDate, IsEmpty, IsError, IsMissing, IsNull, IsNumeric, TypeName, VarType, |
Function | Join | ||||||||||||||||||
Description | Concatenates each element of a string array into a string. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | String | ||||||||||||||||||
Errors | 13, 91, 450 | ||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | Strings | ||||||||||||||||||
Since | VB 6.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | Split |
Sub | Kill | ||||||||
Description | Removes files from a hard drive. | ||||||||
Parameters |
|
||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | RmDir |
Function | LBound | ||||||||||||||||||||
Description | Returns the index of the first element of the dimension in the array. | ||||||||||||||||||||
Parameters |
|
||||||||||||||||||||
Returns | Long | ||||||||||||||||||||
Errors | 13, 450 | ||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||
Module | Information | ||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||
Example | |||||||||||||||||||||
Try it |
|
||||||||||||||||||||
See also | UBound |
Fnction | LCase | ||||||||
Description | Converts the given string parameter to lowercase. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / String) | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print LCase("Don't. You. Scream. At. Me!")
don't. you. scream. at. me!
|
||||||||
Try it |
|
||||||||
See also | LCase$, UCase, UCase$ |
Function | LCase$ | ||||||||
Description | Converts the given string parameter to lowercase. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print LCase$("Don't. You. Scream. At. Me!")
don't. you. scream. at. me!
|
||||||||
Try it |
|
||||||||
See also | LCase, UCase, UCase$ |
Function | Left | ||||||||||||||||||
Description | Returns a given amount of characters from a string's left side. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | Variant (Null / String) | ||||||||||||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | Strings | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | Len, Mid, Right |
Function | Left$ | ||||||||||||||||||
Description | Returns a given amount of characters from a string's left side. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | Variant (Null / String) | ||||||||||||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | Strings | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | Len, Mid, Right |
Function | LeftB | ||||||||||||||||||
Description | Returns a given amount of bytes from a string's left side. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | Variant (Null / String) | ||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | Strings | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | Len, Mid, Right |
Function | LeftB$ | ||||||||||||||||||
Description | Returns a given amount of bytes from a string's left side. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | String | ||||||||||||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | Strings | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | Len, Mid, Right |
Function | Len | ||||||||
Description |
Returns the number of characters in a String or Decimal string representation. For numbers, dates, and user-defined types (UDTs), returns the number of bytes required to store them. Note: For UDTs, the size is calculated not taking padding into consideration. |
||||||||
Parameters |
|
||||||||
Returns | Variant (Null / Long) | ||||||||
Errors | 13, 450 | ||||||||
Status | Partially implemented | ||||||||
Module | Information | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | InStr |
Function | LenB | ||||||||
Description |
Returns the number of bytes in a String or Decimal string representation. For numbers, dates, and user-defined types (UDTs), returns the number of bytes required to store them. Note: For UDTs, the size is calculated taking padding into consideration. |
||||||||
Parameters |
|
||||||||
Returns | Variant (Null / Long) | ||||||||
Status | Not implemented | ||||||||
Module | Information | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | InStr |
Operator | Like | ||||||||||||||||||
Description | Compares one string against a pattern and returns True if it matches the pattern. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | Variant (Null / Boolean) | ||||||||||||||||||
Errors | 93, 450 | ||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | Operators | ||||||||||||||||||
Since | VB 2.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also |
Statement | Line Input | ||||||||||||||||||
Description | Reads a line of text from a file. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | FileSystem | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | Chr, Input |
Functio | Loc | ||||||||
Description | If the file represented by fileNumber is open, returns the current read or write position within it, otherwise an error is raised. | ||||||||
Parameters |
|
||||||||
Returns | Long | ||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | EOF, LOF, Seek |
Function | LOF | ||||||||
Description | If the file represented by fileNumber is open, returns the size in bytes of it, otherwise an error is raised. | ||||||||
Parameters |
|
||||||||
Returns | Long | ||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | EOF, FileLen, Loc, Open |
Function | Log | ||||||||
Description | Returns the given number's natural logarithm. | ||||||||
Parameters |
|
||||||||
Returns | Double | ||||||||
Errors | 5, 450 | ||||||||
Status | Implemented | ||||||||
Module | Math | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Exp |
Function | LTrim | ||||||||
Description | Returns a copy of the given string with its leading spaces removed. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / String) | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | LTrim$ | ||||||||
Description | Returns a copy of the given string with its leading spaces removed. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | MacID | ||||||||
Description | Creates a Macintosh file type or signature from a four-character constant. | ||||||||
Parameters |
|
||||||||
Returns | Long | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 5.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Mid | ||||||||||||||||||||||||||||
Description | Returns a given amount of characters from a string. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | Variant (Null / String) | ||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also |
Function | Mid$ | ||||||||||||||||||||||||||||
Description | Returns a given amount of characters from a string. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | String | ||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also |
Function | MidB | ||||||||||||||||||||||||||||
Description | Returns a given amount of bytes from a string. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | Variant (Null / String) | ||||||||||||||||||||||||||||
Status | Not implemented | ||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also |
Function | MidB$ | ||||||||||||||||||||||||||||
Description | Returns a given amount of bytes from a string. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | String | ||||||||||||||||||||||||||||
Status | Not implemented | ||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also |
Statement | Mid | ||||||||||||||||||||||||||||
Description | |||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also |
Function | Minute | ||||||||
Description | Returns an integer number that represents the minutes of the given date. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / Integer) | ||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | DateTime | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | MIRR | ||||||||||||||||||||||||||||
Description | For a set of periodic cash flows, returns the updated internal rate of return. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | Double | ||||||||||||||||||||||||||||
Errors | 5, 11, 13, 91, 94, 450 | ||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||
Module | Financial | ||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also | DDB, FV, IPmt, IRR, NPer, NPV, Pmt, PPmt, PV, Rate, SLN, SYD |
Sub | MkDir | ||||||||
Description | This command makes a new directory. | ||||||||
Parameters |
|
||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Month | ||||||||
Description | Returns an integer number that represents the month of the given date. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / Integer) | ||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | DateTime | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | MonthName | ||||||||||||||||||
Description | Returns the name of the month in the system's language. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | String | ||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | Strings | ||||||||||||||||||
Since | VB 6.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also |
Function | MsgBox | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Displays a message in a dialog box and returns which button was clicked by the user. | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | VbMsgBoxResult | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 13, 91, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | Interaction | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
Result: |
||||||||||||||||||||||||||||||||||||||||||||||||||||
See also |
Statement | Name | ||||||||||||||||||
Description | |||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | |||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | FileSystem | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also |
Property | Now |
Description | Returns the current date/time. |
Parameters | - |
Returns | Variant (Date) |
Errors | 6, 13, 91, 94, 450 |
Status | Implemented |
Module | DateTime |
Since | VB 1.0 |
Example | |
Try it |
|
See also |
Function | NPer | ||||||||||||||||||||||||||||||||||||||||||||||||
Description | Returns the number of periods in an annuity. | ||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||
Returns | Double | ||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||
Module | Financial | ||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||
See also | DDB, FV, IPmt, IRR, MIRR, NPV, Pmt, PPmt, PV, Rate, SLN, SYD |
Function | NPV | ||||||||||||||||||
Description | Calculates the net present value of an investment using a sequence of periodic payments or receipts and a discount rate. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | Double | ||||||||||||||||||
Errors | 13, 91, 94, 450 | ||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | Financial | ||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | DDB, FV, IPmt, IRR, MIRR, NPer, Pmt, PPmt, PV, Rate, SLN, SYD |
Function | ObjPtr | ||||||||
Description | Returns the memory's address of an object. | ||||||||
Parameters |
|
||||||||
Returns | LongPtr | ||||||||
Status | Not implemented | ||||||||
Module | Hidden | ||||||||
Since | VB 5.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Oct | ||||||||
Description | Returns a string that represents a number's octal value. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / String) | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Bin Hex |
Function | Oct$ | ||||||||
Description | Returns a string that represents a number's octal value. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Bin Hex |
Statement | Open | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Not implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | FileSystem | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also | Close |
Function | Partition | ||||||||||||||||||||||||||||||||||||||
Description | Returns a formated string indicating the position of a number inside a set of ranges. | ||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||
Returns | Variant (Null / String) | ||||||||||||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||
Module | Interaction | ||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||
See also |
Function | Pmt | ||||||||||||||||||||||||||||||||||||||||||||||||
Description | Calculates the payment for an annuity using periodic and fixed payments and an interest rate. | ||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||
Returns | Double | ||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||
Module | Financial | ||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||
See also | DDB, FV, IPmt, IRR, MIRR, NPer, NPV, PPmt, PV, Rate, SLN, SYD |
Function | PPmt | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Returns the principal payment for a given period of an annuity. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | Double | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | Financial | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also | DDB, FV, IPmt, IRR, MIRR, NPer, NPV, Pmt, PV, Rate, SLN, SYD |
Statement | |||||||||||||||||||
Description | Outputs text to a file. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | FileSystem | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also |
Statement | Put | ||||||||||||||||||||||||||||
Description | Outputs data to a file. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Status | Not implemented | ||||||||||||||||||||||||||||
Module | FileSystem | ||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also |
Function | PV | ||||||||||||||||||||||||||||||||||||||||||||||||
Description | Calculates the present value of an annuity. | ||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||
Returns | Double | ||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 11, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||
Module | Financial | ||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||
See also | DDB, FV, IPmt, IRR, MIRR, NPer, NPV, Pmt, PPmt, Rate, SLN, SYD |
Function | QBColor | ||||||||||||||||||||||||||||||||||||||||
Description | From a list of established standard colors, returns the RGB color code for a given color number. | ||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||
Returns | Long | ||||||||||||||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||
Module | Information | ||||||||||||||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||
See also |
Sub | Randomize | ||||||||
Description | Defines the seed for the random-number generator. | ||||||||
Parameters |
|
||||||||
Returns | |||||||||
Errors | 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Math | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Rate | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Calculates the interest rate per period for an annuity. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | Double | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | Financial | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also | DDB, FV, IPmt, IRR, MIRR, NPer, NPV, Pmt, PPmt, PV, SLN, SYD |
Function | Replace | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Description | Replaces all occurrences of a substring within a string with the provided substitute string. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns | String | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
See also |
Sub | Reset |
Description | Write any pending data in buffers to hard drive and closes all open files. |
Parameters | - |
Errors | 450 |
Status | Not implemented |
Module | FileSystem |
Since | VB 1.0 |
Example | |
Try it |
|
See also |
Function | RGB | ||||||||||||||||||||||||||||
Description | Merges red, green, and blue into an integer representing a color and returns it. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | Long | ||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||
Module | Information | ||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also |
Function | Right | ||||||||||||||||||
Description | Returns a given amount of characters from a string's right side. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | Variant (Null / String) | ||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | Strings | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also |
Function | Right$ | ||||||||||||||||||
Description | Returns a given amount of characters from a string's right side. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | String | ||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | Strings | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also |
Function | RightB | ||||||||||||||||||
Description | Returns a given amount of bytes from a string's right side. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | Variant (Null / String) | ||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | Strings | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also |
Function | RightB$ | ||||||||||||||||||
Description | Returns a given amount of bytes from a string's right side. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | String | ||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | Strings | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also |
Sub | RmDir | ||||||||
Description | Removes a directory from a hard drive. | ||||||||
Parameters |
|
||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Rnd | ||||||||
Description | Returns a pseudo-random number in the range 0 (inclusive) to 1 (exclusive.) | ||||||||
Parameters |
|
||||||||
Returns | Single | ||||||||
Errors | 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Math | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Round | ||||||||||||||||||
Description | Rounds number to numDigitsAfterDecimal decimal places. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | Variant (Null / same data type as number) | ||||||||||||||||||
Errors | 13, 450 | ||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | Math | ||||||||||||||||||
Since | VB 4.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also |
Function | RTrim | ||||||||
Description | Returns a copy of the given string with its trailing spaces removed. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / String) | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | RTrim$ | ||||||||
Description | Returns a copy of the given string with its trailing spaces removed. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Sub | SaveSetting | ||||||||||||||||||||||||||||||||||||||
Description | Saves a setting value as string under the given appName, section and key names. | ||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||
Status | Not implemented | ||||||||||||||||||||||||||||||||||||||
Module | Interaction | ||||||||||||||||||||||||||||||||||||||
Since | VB 4.0 | ||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||
See also |
Function | Second | ||||||||
Description | Returns an integer number that represents the seconds of the given date. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / Integer) | ||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | DateTime | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function/Statement | Seek | ||||||||
Description |
As a statement, sets the current position within a file for a read or write operation. As a function, returns the current position. |
||||||||
Parameters |
|
||||||||
Returns | Long | ||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Sub | SendKeys | ||||||||||||||||||
Description | Simulates keystroke(s) to the active window. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | Interaction | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also |
Sub | SetAttr | ||||||||||||||||||
Description | Changes the attributes of a file. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | FileSystem | ||||||||||||||||||
Since | VB 2.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | FileAttr, GetAttr |
Function | Sgn | ||||||||
Description | Returns 1 if number if positive, -1 if it is negative, and 0 if it is zero. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Integer) | ||||||||
Errors | 5, 450 | ||||||||
Status | Implemented | ||||||||
Module | Math | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Shell | ||||||||||||||||||
Description | Starts another program. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | Double | ||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | Interaction | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also |
Function | Sin | ||||||||
Description |
Returns the sine of a number in radians. To convert radians to degrees, multiply it by 180 then divide the result by 3.14159265358979. |
||||||||
Parameters |
|
||||||||
Returns | Double | ||||||||
Errors | 5, 450 | ||||||||
Status | Implemented | ||||||||
Module | Math | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | SLN | ||||||||||||||||||||||||||||
Description | Calculates an asset's single-period straight-line depreciation. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | Double | ||||||||||||||||||||||||||||
Errors | 5, 13, 91, 94, 450 | ||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||
Module | Financial | ||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also | DDB, FV, IPmt, IRR, MIRR, NPer, NPV, Pmt, PPmt, PV, Rate, SYD |
Function | Space | ||||||||
Description | Returns a string filled with spaces. | ||||||||
Parameters |
|
||||||||
Returns | Variant (String) | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Space$ | ||||||||
Description | Returns a string filled with spaces. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Spc | ||||||||
Description | Used to position the output in a Print statement. | ||||||||
Parameters |
|
||||||||
Returns |
Spc is a function that can only be used in a Print statement. As such, it does not formally return anything. |
||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Split | ||||||||||||||||||||||||||||||||||||||||||
Description | Splits a string into substrings based on the given separator and returns them as an array. | ||||||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||||||
Returns | Variant (String()) | ||||||||||||||||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||||||||||||||||
Since | VB 6.0 | ||||||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||||||
See also |
Function | Sqr | ||||||||
Description | Returns the square root of a number. | ||||||||
Parameters |
|
||||||||
Returns | Double | ||||||||
Errors | 5, 450 | ||||||||
Status | Implemented | ||||||||
Module | Math | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Str | ||||||||
Description |
Converts a number to its string representation. Unlike CStr, Str uses "." as the only decimal separator. If the number is not negative, it also adds a space to the beginning of the string. |
||||||||
Parameters |
|
||||||||
Returns | Variant (Null / String) | ||||||||
Errors | 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Str$ | ||||||||
Description |
Converts a number to its string representation. Unlike CStr, Str uses "." as the only decimal separator. If the number is not negative, it also adds a space to the beginning of the string. |
||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | StrComp | ||||||||||||||||||||||||||||
Description |
Compares two strings and returns: 0 if they are equal, 1 if the left string is greater than the right one, or -1 otherwise. |
||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | Variant | ||||||||||||||||||||||||||||
Errors | 5, 13, 91, 450 | ||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||
Since | VB 2.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also |
Function | StrConv | ||||||||||||||||||||||||||||
Description | Returns a copy of the string after operating the requested conversion on it. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | Variant (Null / String) | ||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||
Status | Partially implemented | ||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||
Since | VB 4.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also | LCase, UCase |
Function | String | ||||||||||||||||
Description | Returns a string filled with the given character. | ||||||||||||||||
Parameters |
|
||||||||||||||||
Returns | Variant (Null / String) | ||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||
Status | Implemented | ||||||||||||||||
Module | Strings | ||||||||||||||||
Since | VB 2.0 | ||||||||||||||||
Example | |||||||||||||||||
Try it |
|
||||||||||||||||
See also |
Function | String$ | ||||||||||||||||
Description | Returns a string filled with the given character. | ||||||||||||||||
Parameters |
|
||||||||||||||||
Returns | String | ||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||
Status | Implemented | ||||||||||||||||
Module | Strings | ||||||||||||||||
Since | VB 2.0 | ||||||||||||||||
Example | |||||||||||||||||
Try it |
|
||||||||||||||||
See also |
Function | StrPtr | ||||||||
Description | Returns the memory's address of a string. | ||||||||
Parameters |
|
||||||||
Returns | LongPtr | ||||||||
Status | Not implemented | ||||||||
Module | Hidden | ||||||||
Since | VB 5.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | StrReverse | ||||||||
Description | Inverts the order of the string's characters. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 6.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Switch | ||||||||
Description |
Evaluates even elements in an array one by one and, upon finding the first that is True, returns the next (odd) element. If no element evaluates to True, returns Null. |
||||||||
Parameters |
|
||||||||
Returns | Variant | ||||||||
Errors | 5 | ||||||||
Status | Implemented | ||||||||
Module | Interaction | ||||||||
Since | VB 3.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | SYD | ||||||||||||||||||||||||||||||||||||||
Description | Calculates the asset's sum-of-years' digits depreciation. | ||||||||||||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||||||||||||
Returns | Double | ||||||||||||||||||||||||||||||||||||||
Errors | 5, 13, 91, 94, 450 | ||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||
Module | Financial | ||||||||||||||||||||||||||||||||||||||
Since | VB 3.0 | ||||||||||||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||||||||||||
See also | DDB, FV, IPmt, IRR, MIRR, NPer, NPV, Pmt, PPmt, PV, Rate, SLN |
Function | Tab | ||||||||
Description | Used to position the output in a Print statement. | ||||||||
Parameters |
|
||||||||
Returns |
Tab is a function that can only be used in a Print statement. As such, it does not formally return anything. |
||||||||
Status | Not implemented | ||||||||
Module | FileSystem | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Function | Tan | ||||||||
Description |
Returns the tangent of a number in radians. To convert radians to degrees, multiply it by 180 then divide the result by 3.14159265358979. |
||||||||
Parameters |
|
||||||||
Returns | Double | ||||||||
Errors | 5, 450 | ||||||||
Status | Implemented | ||||||||
Module | Math | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also |
Property | Time |
Description | Returns or sets system's time. |
Parameters | - |
Returns | Variant (Date) |
Errors | 6, 13, 91, 94, 450 |
Status | Implemented |
Module | DateTime |
Since | VB 1.0 |
Example |
Debug.Print Time
01:23:45
|
Try it |
|
See also | Date, Format, Now, Time$ |
Property | Time$ |
Description | Returns or sets system's date. |
Parameters | - |
Returns | Date |
Errors | 6, 13, 91, 94, 450 |
Status | Implemented |
Module | DateTime |
Since | VB 1.0 |
Example |
Debug.Print Time$
01:23:45
|
Try it |
|
See also | Date, Format, Now, Time |
Read-only Property | Timer |
Description | Returns the amount of seconds that have passed since midnight. |
Parameters | - |
Returns | Single |
Errors | - |
Status | Implemented |
Module | DateTime |
Since | VB 1.0 |
Example | |
Try it |
|
See also | Randomize, Time |
Function | TimeSerial | ||||||||||||||||||||||||||||
Description | Builds a time from the given hours, minutes, and seconds. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | Variant (Date) | ||||||||||||||||||||||||||||
Errors | 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||
Module | DateTime | ||||||||||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also | DateSerial, DateValue, Hour, Minute, Now, Second, TimeValue |
Function | TimeValue | ||||||||
Description | Converts a string to a time. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Date) | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | DateTime | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | DateSerial, DateValue, Hour, Minute, Now, Second, TimeSerial |
Function | Trim | ||||||||
Description | Returns a copy of the given string with its leading and trailing spaces removed. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / String) | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 2.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Left, LTrim, Right, RTrim |
Function | Trim$ | ||||||||
Description | Returns a copy of the given string with its leading and trailing spaces removed. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 2.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Left, LTrim, Right, RTrim |
Function | TypeName | ||||||||
Description | Returns the name of the sbtype of a variable. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Information | ||||||||
Since | VB 4.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | IsArray, IsDate, IsEmpty, IsError, IsMissing, IsNull, IsNumeric, IsObject, VarType |
Function | UBound | ||||||||||||||||||||
Description | Returns the index of the last element of the dimension in the array. | ||||||||||||||||||||
Parameters |
|
||||||||||||||||||||
Returns | Long | ||||||||||||||||||||
Errors | 13, 450 | ||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||
Module | Information | ||||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||||
Example | |||||||||||||||||||||
Try it |
|
||||||||||||||||||||
See also | LBound |
Function | UCase | ||||||||
Description | Converts the given string parameter to uppercase. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / String) | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print UCase("Don't scream at me!")
DON'T SCREAM AT ME!
|
||||||||
Try it |
|
||||||||
See also | LCase, LCase$, UCase$ |
Function | UCase$ | ||||||||
Description | Converts the given string parameter to uppercase. | ||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 1.0 | ||||||||
Example |
Debug.Print UCase$("Don't scream at me!")
DON'T SCREAM AT ME!
|
||||||||
Try it |
|
||||||||
See also | LCase, LCase$, UCase |
Function | Unescape | ||||||||
Description |
Converts any heaxadecimal number preceded by '%' in a string to its correspondent non-ASCII character. |
||||||||
Parameters |
|
||||||||
Returns | String | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Strings | ||||||||
Since | VB 6.7 | ||||||||
Example |
Debug.Print Unescape("a%20<>%20b")
a <> b
|
||||||||
Try it |
|
||||||||
See also | Escape |
Function | Val | ||||||||
Description |
Converts a string into its number representation. Any leading or trailing spaces are trimmed. Accepts numbers in binary, octal, decimal, hexadecimal, and scientific notation. Comas are ignored, only valid decimal separator is ".". |
||||||||
Parameters |
|
||||||||
Returns | Double | ||||||||
Errors | 13, 91, 450 | ||||||||
Status | Implemented | ||||||||
Module | Conversion | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Str |
Function | VarPtr | ||||||||
Description | Returns the memory's address of a variable. | ||||||||
Parameters |
|
||||||||
Returns | LongPtr | ||||||||
Status | Not implemented | ||||||||
Module | Hidden | ||||||||
Since | VB 5.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | ObjPtr, StrPtr |
Function | VarType | ||||||||
Description | Returns a number defining the sbtype of a variable. | ||||||||
Parameters |
|
||||||||
Returns | VbVarType | ||||||||
Errors | 450 | ||||||||
Status | Implemented | ||||||||
Module | Information | ||||||||
Since | VB 2.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | IsArray, IsDate, IsEmpty, IsError, IsMissing, IsNull, IsNumeric, IsObject, |
Function | Weekday | ||||||||||||||||||
Description | Returns an integer number that represents the weekday of the given date. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Returns | VbDayOfWeek | ||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | DateTime | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | Date, Day, Month, Now, WeekdayName, Year |
Function | WeekdayName | ||||||||||||||||||||||||||||
Description | Returns the name of the weekday in the system's language. | ||||||||||||||||||||||||||||
Parameters |
|
||||||||||||||||||||||||||||
Returns | String | ||||||||||||||||||||||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||
Module | Strings | ||||||||||||||||||||||||||||
Since | VB 6.0 | ||||||||||||||||||||||||||||
Example | |||||||||||||||||||||||||||||
Try it |
|
||||||||||||||||||||||||||||
See also | MonthName |
Sub | Width | ||||||||||||||||||
Description | Sets the maximum output line width for an open file. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | Hidden | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | Open, Print |
Statement | Write | ||||||||||||||||||
Description | Writes data to a file. | ||||||||||||||||||
Parameters |
|
||||||||||||||||||
Status | Not implemented | ||||||||||||||||||
Module | FileSystem | ||||||||||||||||||
Since | VB 1.0 | ||||||||||||||||||
Example | |||||||||||||||||||
Try it |
|
||||||||||||||||||
See also | Input, Open, Print |
Function | Year | ||||||||
Description | Returns an integer number that represents the year of the given date. | ||||||||
Parameters |
|
||||||||
Returns | Variant (Null / Integer) | ||||||||
Errors | 5, 6, 13, 91, 94, 450 | ||||||||
Status | Implemented | ||||||||
Module | DateTime | ||||||||
Since | VB 1.0 | ||||||||
Example | |||||||||
Try it |
|
||||||||
See also | Date, Day, Month, Now, Weekday |
Enum | VbAppWinStyle | ||||||||||||
Enumerands |
|
||||||||||||
Status | Implemented | ||||||||||||
Module | Constants | ||||||||||||
See also | Shell |
Enum | VbCalendar | ||||
Enumerands |
|
||||
Status | Implemented | ||||
Module | Constants | ||||
See also | Calendar |
Enum | VbCallType | ||||||||
Enumerands |
|
||||||||
Status | Implemented | ||||||||
Module | Constants | ||||||||
See also | CallByName |
Enum | VbCompareMethod | ||||
Enumerands |
|
||||
Status | Implemented | ||||
Module | Constants | ||||
See also | Filter, InStr, Replace, Split, StrConv |
Enum | VbDateTimeFormat | ||||||||||
Enumerands |
|
||||||||||
Status | Implemented | ||||||||||
Module | Constants | ||||||||||
See also | FormatDateTime |
Enum | VbDayOfWeek | ||||||||||||||||
Enumerands |
|
||||||||||||||||
Status | Implemented | ||||||||||||||||
Module | Constants | ||||||||||||||||
See also | DateDiff, Format, Weekday, WeekdayName |
Enum | VbFileAttribute | ||||||||||||||||
Enumerands |
|
||||||||||||||||
Status | Implemented | ||||||||||||||||
Module | Constants | ||||||||||||||||
See also | Dir, GetAttr, SetAttr |
Enum | VbFirstWeekOfYear | ||||||||
Enumerands |
|
||||||||
Status | Implemented | ||||||||
Module | Constants | ||||||||
See also | DateDiff, Format |
Enum | VbIMEStatus | ||||||||||||||||||||||
Enumerands |
|
||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||
Module | Constants | ||||||||||||||||||||||
See also | IMEStatus |
Enum | VbMsgBoxStyle | ||||||||||||||||||||||||||||||||||||||||
Enumerands |
|
||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||
Module | Constants | ||||||||||||||||||||||||||||||||||||||||
See also | MsgBox |
Enum | VbMsgBoxResult | ||||||||||||||
Enumerands |
|
||||||||||||||
Status | Implemented | ||||||||||||||
Module | Constants | ||||||||||||||
See also | MsgBox |
Enum | VbStrConv | ||||||||||||||||||
Enumerands |
|
||||||||||||||||||
Status | Implemented | ||||||||||||||||||
Module | Constants | ||||||||||||||||||
See also | StrConv |
Enum | VbTriState | ||||||
Enumerands |
|
||||||
Status | Implemented | ||||||
Module | Constants | ||||||
See also | FormatCurrency, FormatNumber, FormatPercent |
Enum | VbVarType | ||||||||||||||||||||||||||||||||||||||||||||||
Enumerands |
|
||||||||||||||||||||||||||||||||||||||||||||||
Status | Implemented | ||||||||||||||||||||||||||||||||||||||||||||||
Module | Constants | ||||||||||||||||||||||||||||||||||||||||||||||
See also | VarType |