Each of the cards within the patient's cards.
object.Item(aIndex)
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatientCards interface |
|
aIndex |
In, Required | int |
The index of the card |
Display the type of each patient's card.
Dim aPatient
Dim aCards
Dim aCard
Dim aMessage
Set aPatient = Profile.SelectPatient
set aCards = aPatient.Cards
aMessage = "Cards Count = " & aCards.Count & vbNewLine
for i = 0 to aCards.Count - 1
set aCard = aPatient.Cards.Item(i)
aMessage = aMessage & vbNewLine
aMessage = aMessage & aCard.CardType
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Cards can be found in
.