Globally Unique Identifier of the patient's family problem.
object.GUID
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISFamilyProblem interface |
string
Display some information about the family problems loaded on the basis of the selected filter including GUIDs of the family problems.
Dim aPatient
Dim aFilter
Dim aFamilyProblems, aFamilyProblem
Dim aMessage
Dim i
Set aPatient = Profile.SelectPatient
set aFilter = Profile.CreateFamilyProblemFilter
aFilter.PatientID = aPatient.ID
set aFamilyProblems = aFilter.Load
aMessage = "Family Problems Count: " & aFamilyProblems.Count & vbNewLine &_
"#" & vbTab & "Age" & vbTab & "Date" & vbTab & vbTab & "GUID"
for i = 0 to aFamilyProblems.Count - 1
set aFamilyProblem = aFamilyProblems.Items(i)
aMessage = aMessage & vbNewLine & (i + 1) & vbTab &_
aFamilyProblem.Age & vbTab &_
aFamilyProblem.Date & vbTab & aFamilyProblem.GUID & vbTab
next
Profile.MsgBox(aMessage)
In Profile Client v8 on User Interface GUID cannot be found.