ISPatientCard.SetModified

Description

This function allows to save any changes for the patient's card.

Syntax

object.SetModified

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

Example

Set the number of the patient's card and save it.

Dim aPatient  
Dim aCard

Set aPatient = Profile.SelectPatient 
set aCard = aPatient.Cards.Item(0)
aCard.SetModified
aCard.CardNumber = "1234"
aPatient.Save
Profile.MsgBox("The card was modified successfully!")    
Note:

In Profile Client v8 on User Interface modified Card can be found in Patient > Alter Patient > Financial > Health Plans and Cards.

Version information

Added in v7.8.0