This function returns the information about the country of the current practice.
object.CountryInfo()
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfile interface |
Display the information about the country, province of the current practice and its patient ID title.
Dim aMessage
Dim aCountryInfo
set aCountryInfo = Profile.CountryInfo
aMessage = _
"IsAustralia: " & aCountryInfo.IsAustralia & vbNewLine &_
"IsCanada: " & aCountryInfo.IsCanada & vbNewLine &_
"IsNewZealand: " & aCountryInfo.IsNewZealand & vbNewLine &_
"IsUnitedKingdom: " & aCountryInfo.IsUnitedKingdom & vbNewLine &_
"IsUnitedStates: " & aCountryInfo.IsUnitedStates & vbNewLine &_
"PatientIdTitle: " & aCountryInfo.PatientIdTitle & vbNewLine &_
"Province: " & aCountryInfo.Province
Profile.MessageBox(aMessage)
In Profile Client v8 on User Interface Country Info can be found in
.