GetApplicationSettingsTimeStamp

Returns a timestamp that indicates when the application settings were last updated.

Syntax

<HsvMetadata>.GetApplicationSettingsTimeStamp pdTimeStamp

Argument

Description

pdTimeStamp

Double. Returns the timestamp showing when the settings were updated.

The timestamp can be converted to a Date format; for example, in Visual Basic you can convert with CDate.

Example

The following function returns the application settings timestamp, converted to a Date format.

Function getAppSetStamp() As Date
Dim dTime As Double
'g_cMetadata is a previously set HsvMetadata object
g_cMetadata.GetApplicationSettingsTimeStamp dTime
getAppSetStamp = CDate(dTime)
End Function