This documentation was styled with a demo skin from the Premium Pack 4 add-on for Help & Manual. The contents of the skin are encrypted and not configurable. You can only publish HM projects with this skin. You cannot edit it or change it.
This version is copyright and may only be used for local testing purposes. It may not be distributed.
Please purchase the full version of the Premium Pack to get the configurable skins and remove this notice. The package will also include the Toolbox configuration utility for Premium Pack skins.
Description
Conversion from UTC to LOCAL.
Presuming the current value of cDateTime contains LOCAL date and time, modifies the calling cDateTime object in a way it represents UTC date and time.
Syntax
<cDateTime>.ToLocalTime
Returns
None.
Remarks
Presumes the cDateTime variable contains UTC date/time at the time of calling .ToLocalTime.
Restrictions
See also
Examples
' Create an object with current date and time
Dim myDateTime As New cDateTime
' Set date to UTC 30th December of 2000
myDateTime.NewDate(2000, 12, 30)
' Set time to UTC 15:45
myDateTime.NewTime(15, 45)
' Display UTC value
MsgBox 0, "myDateTime now in UTC:" + $CRLF + myDateTime.toString
' Alters the state of the myDateTime, converting the previous UTC value to your local value
myDateTime.ToLocalTime
' If you live in other than UTC slice of the world, you will see an altered value :)
MsgBox 0, "Altered myDateTime is:" + $CRLF + myDateTime.toString