ISAppointmentFilter.ChangedSince

Description

This filter property is used to load the appointments that have been booked or modified since the specified date and time.

Syntax

object.ChangedSince

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

Return Value

DateTime

Example

Display the number of the appointments that have been booked or modified since the specified date and time.

Dim aProvider
Dim aFilter
Dim aPatient 
Dim aAppointments
Dim aChangedSince

Set aPos = Profile.LoadProvider("LONSDALE") 
set aPatient = Profile.SelectPatient
set aProvider = Profile.LoadProvider("PROV")
set aFilter = Profile.CreateAppointmentFilter

aFilter.ProviderID = aProvider.Id
aFilter.PatientId = aPatient.Id
aFilter.ChangedSince = #26/12/2018  08:00:00#
 
set aAppointments = Profile.LoadAppointments(aFilter)

Profile.MsgBox("The number of the appointments changed since " &_ 
  aFilter.ChangedSince & " is " &_    
  aAppointments.Count)  
Note:

In Profile Client v8 on User Interface Changed Since cannot be found.

Version information

Added in v8.2.0