|
|
|
|
|
SysDateTime (Function) In french: DateHeureSys Returns or modifies the system date (current date and time defined on the current computer). // Changes the system date and displays the new date SysDateTime("20020101235900") MySysDateTime is DateTime MySysDateTime = SysDateTime()
Syntax <Result>: Character string or DateTime variable System date and time in YYYYMMDDHHmmSSCCC format (YYYY corresponds to the year, MM to the month, DD to the day, HH to hours, mm to minutes, SS to seconds and CCC to milliseconds). Remarks - To get the date and time in a format other than YYYYMMDDHHmmSSCCC, the string must be formatted using the DateToString, Right, Left functions or the date properties. The YYYYMMDDHHmmSSCCC format was chosen because it allows you to check the order of dates.
- On all current systems, the year of the system date can be between 1920 and 2120.
Business / UI classification: Neutral code
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|