vbscript – Day
**FUNCTION:** `Day(date)`
**Description**
Extrait le jour du mois.
**Syntax**
`Day(date)`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Day(Now)
« `
**Output :** `9`
**FUNCTION:** `Day(date)`
**Description**
Extrait le jour du mois.
**Syntax**
`Day(date)`
**Paramètres**
– *(aucun)*
**Exemples**
« `vb
WScript.Echo Day(Now)
« `
**Output :** `9`
VBScript – Date/Heure
Property: TextStream.AtEndOfLine Implemented in version 2.0 object.AtEndOfLine The AtEndOfLine property returns a Boolean value. If the file pointer is positioned immediately before the file’s end-of-line marker, the value is True. Otherwise, the value is False. The TextStream object must be open for reading or an error will occur when retreiving this property this method. The…
STATEMENT: Dim Implemented in version 1.0 Dim The Dim statement allows you to explicitly declare one or more new variables and to allocate storage (memory) space. While you do not have to use Dim to create new variables in VBScript, the wise programmer prefers to use Dim. In fact, many programmer purposely include theOption Explicit statement in all of their VBScript…
VBScript – Formatage
WSH – WScript
FUNCTION: Abs() Implemented in version 1.0 Abs(Number) The Abs function returns the absolute value for a number. Negative numbers become positive. Positive numbers remain positive. Code: <% =Abs(-127.89) %> Output: 127.89 Code: <% =Abs(127.89) %> Output: 127.89