This function creates a new provider.
object.CreateProvider(aCode)
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISProfile interface |
|
aCode |
In, Required | string |
The code of the provider |
Add a new provider and display his/her full name.
Dim aProvider
Set aProvider = Profile.CreateProvider("JOHNJOHN")
aProvider.FullName = "John Johnson"
aProvider.Save
Set aProvider = Profile.LoadProvider("JOHNJOHN")
Profile.MsgBox("A new provider " & aProvider.FullName & "was successfully created")
In Profile Client v8 on User Interface Provider can be found in
.