This function finds the time in a different timezone and stores it as a UTC time then converts it back to the local time
' **************************************** ' Designed by : Smarter Dimensions ' Last Updated : 18th July 2009 ' Store different timzone time in a variable. ' **************************************** Dim oDateTimeNow ' Get Perth Time oDateTimeNow = now(225) debug.Log ( "Time in Perth :" + ctext(oDateTimeNow) ) ' Convert Perth time to localtime oDateTimeNow = LocalToUTCTime(oDateTimeNow) debug.Log ( "UTC Time :" + ctext(oDateTimeNow) ) oDateTimeNow = UTCToLocalTime(oDateTimeNow) debug.Log ( "Time in Localtime :" + ctext(oDateTimeNow) )