|
|
|
|
|
- Properties specific to gglOrganization variables
gglOrganization (Variable type) In french: gglSociété
The gglOrganization type is used to describe the companies and organizations to which a contact belongs. This type of variable is used by the gglContact type. Note: For more details on the declaration of this type of variable and the use of WLanguage properties, see Declaring a variable.
Cnx is gglConnection
Cnx.Email = "balthazar@gmail.com"
Cnx.Password = "azerty"
Cnx.ApplicationName = "MonAppli-01"
IF GglConnect(Cnx) = False THEN
Error(ErrorInfo())
END
...
tabContacts is array of gglContact
tabContacts = GglListContact(Cnx)
MonContact is gglContact = tabContacts[1]
Org is gglOrganization dynamic
FOR EACH Org OF MonContact.Company
Trace(Org.Name + " : " + Org.Caption)
END
Properties Properties specific to gglOrganization variables The following properties can be used to handle gglOrganization variables: | | | Name | Type used | Effect |
---|
Caption | Character string | Description of the company. | Name | Character string | Name of the company. | Primary | Boolean | - True if the company corresponds to the main company of the contact,
- False otherwise.
| Title | Character string | Title of the contact in the company. | Type | Integer constant | Type of the company corresponding to one of the following variables:- gglOther: Company to which the contact is linked in a non-professional way.
- gglBureau: Company to which the contact is professionally linked.
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|