|
|
|
|
|
- Special cases
- Application in the background: Specific case from Android 10
ContactDisplay (Function) In french: ContactAffiche Opens the form of a contact in the native application for contact management of the device (Android, iPhone or iPad).
PROCEDURE AfficheContact(nNumContact is int)
tContact is Contact
IF nNumContact <= gtabContacts.Occurrence THEN
tContact = gtabContacts[nNumContact]
VariableReset(gContactEnCours)
gContactEnCours = tContact
ContactDisplay(gContactEnCours)
END
Syntax
Displaying a contact from a Contact variable Hide the details
<Result> = ContactDisplay(<Contact>)
<Result>: Boolean - True if the form of the contact was opened,
- False otherwise. To get more details on the error, use ErrorInfo.
<Contact>: Contact variable Name of the Contact variable corresponding to the contact to display. This contact must exist in the database of contacts. Remarks Special cases - ContactDisplay gives control back to the application once the contact form has been displayed.
- ContactDisplay can be used in the emulator. It cannot be used in the simulator.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|