ISProfile.LoadCountryList

Description

This function returns the list of the countries.

Syntax

object.LoadCountryList()

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

Return Value

ISCountryItems

Returns the list of the countries.

Example

Display the number of the countries and their long names.

Dim aCountries
Dim aMessage

Set aCountries = Profile.LoadCountryList
aMessage = "Countries Count = " & aCountries.Count
for i = 0 to aCountries.Count - 1
  set aCountry = aCountries.Item(i)
  aMessage = aMessage & vbNewLine & aCountry.LongName
next  

Profile.MsgBox(aMessage)     
Note:

In Profile Client v8 on User Interface Country List can be found in Patient > Alter Patient > General.

Version information

Added in v7.8.0