Returns True if the patient's card is expired or is not to be used.
object.Discontinued
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientCard interface |
bool
Display Discontinued for the patient's card.
Dim aPatient
Dim aCards
Dim aCard
Dim aMessage
Set aPatient = Profile.SelectPatient
set aCards = aPatient.Cards
aMessage = "Cards Count = " & aCards.Count
for i = 0 to aCards.Count - 1
set aCard = aCards.Item(i)
aMessage = aMessage & vbNewLine
aMessage = aMessage & "This " & aCard.CardType & " card is discontinued = "
aMessage = aMessage & aCard.Discontinued
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface the Discontinued checkbox can be checked in
.