ISProvider.AllowMobileDeviceAccess

Description

Returns True if the provider is granted the right to log into the database through mobile device.

Syntax

object.AllowMobileDeviceAccess

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

Return Value

bool

Example

Display AllowMobileDeviceAccess for the provider.

Dim aFilter 
Dim aProviders
Dim aProvider
Dim aMessage

Set aFilter = Profile.CreateProvidersFilter

aFilter.Category = 2 'pcProvider  

set aProviders = Profile.LoadProvidersByFilter(aFilter)
aMessage = aMessage & vbNewLine &_
  "The number of the providers is " & aProviders.Count

aMessage = aMessage & vbNewLine &_
  "FullName:" & vbTab & "Allow Mobile Device Access (True/False):"
for each aProvider in aProviders 
  aMessage = aMessage & vbNewLine &_
    aProvider.FullName & vbTab &_
    aProvider.AllowMobileDeviceAccess
next

Profile.MsgBox (aMessage)  
Note:

In Profile Client v8 on User Interface the Allow Mobile Device Access checkbox can be checked in Organisation > People&Places > People and Places > Open the selected Provider > Internet.

Version information

Added in v7.8.0