GetCurrencyTimeStamp

Returns a timestamp that indicates when the application’s currencies were last updated.

Syntax

<HsvMetadata>.GetCurrencyTimeStamp pdTimeStamp

Argument

Description

pdTimeStamp

Double. Returns the timestamp showing when the currencies 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 currencies timestamp, converted to a Date format.

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