Details of the patient's Past, Family, Social and Obstetric history.
object.Histories
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISPatient interface |
Display the number of the patient histories, their type and content.
Dim aPatient
Dim aHistories
Dim aHistory
Dim aMessage
Set aPatient = Profile.SelectPatient
set aHistories = aPatient.Histories
aMessage = "Histories Count = " & aHistories.Count
for i = 0 to aHistories.Count - 1
set aHistory = aPatient.Histories.Item(i)
aMessage = aMessage & vbNewLine
aMessage = aMessage & aHistory.TypeDescription & ": " & "'" & aHistory.Text & "'"
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface Obstetric History can be found in
, Social History can be found in , Past History can be found in , Family History can be found in .