This function returns the list of the countries.
object.LoadCountryList()
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfile interface |
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)
In Profile Client v8 on User Interface Country List can be found in
.