ISProfileForm.HRIObservationDate

Description

This property contains the date and time that are assigned to the created and changed HRIs of the form in the fields 'ObservedOn' while saving.

Syntax

object.HRIObservationDate

Part Attribute Type Description
object Required
The object always implements the ISProfileForm interface

Return Value

DateTime

Example

Display some information about the form, including the date and time that are assigned to the created and changed HRIs of the form.

Dim aForm
Dim aFormInfo

Set aForm = Profile.Form
aFormInfo =_
  "Short Name: " & aForm.ShortName & vbNewLine &_
  "TypeName: " & aForm.TypeName & vbNewLine &_   
  "HRI Observation Date: " & aForm.HRIObservationDate 
    
Profile.MsgBox(aFormInfo)  
Note: If HRIObservationDate = 0, the current date and time will be used. This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface HRI Observation Date cannot be found.

Version information

Added in v7.8.0