ISPatient.ReloadClinicalDetails

Description

This function reloads clinical details of the patient such as Drug Use, Drug Frequency, Smoker Type, Smoker Num/Day, Smoker Pack Year, Smoker Stopped, Smoker Count, Smoker Source ID, Smoker Source Provider ID, Alcohol Type, Alcohol Drinks/Day, Alcohol Stopped, Alcohol Source ID, Alcohol Source Provider ID, Birth Gender, Sexual Identity, Sexual Orientation.

Syntax

object.ReloadClinicalDetails

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

Example

Set the number of cigarettes smoked by the patient per day and reload this information from clinical details of the patient.

Dim aPatient  

Set aPatient = Profile.SelectPatient
Profile.MsgBox(aPatient.SmokerNumDay) 
aPatient.SmokerNumDay = 8
Profile.MsgBox(aPatient.SmokerNumDay)
aPatient.ReloadClinicalDetails
Profile.MsgBox(aPatient.SmokerNumDay)   
Note:

In Profile Client v8 on User Interface these Clinical Details can be found in Clinical > Clinical Details.

Version information

Added in v7.11.0