ISProfile.DateTimeUtils

Description

This property returns the utils which contain the functionality for working with date and time.

Syntax

object.DateTimeUtils

Part Attribute Type Description
object Required
The object always implements the ISProfile interface
Restriction: This property is readonly.

Return Value

ISDateTimeUtils

Example

Display the local date and time.

Dim aDateTimeUtils
Dim aCurrentDT
Dim aMessage 

Set aDateTimeUtils = Profile.DateTimeUtils
aCurrentDT = aDateTimeUtils.Now

aMessage = "Local Date and Time: " & aCurrentDT 

Profile.MsgBox(aMessage)  
Note:

Version information

Added in v7.8.0