You are using an outdated browser. For a faster, safer browsing experience, upgrade for free today.
Order online or call us +62-821-2442-2332 (Whatsapp)
IDR
  • Empty!

Google Contacts Delphi Component

  • Brand: Sync-Components
  • Product Code: Google Delphi Component
  • Availability: In Stock


Available Options



Google Contacts Delphi Component is a non-visual component that allows you to work with Google Contacts data using Delphi. The component works directly with Google using People API. Official APIs use guarantees maximum compatibility and fewest possible modifications to future versions.


Features

  • Create and edit contacts and groups (all fields supported including creating new custom fields)
  • Grouping of contacts
  • Batch storing of changes
  • Access to XML code for each object with possibility to read and modify any fields for an object
  • Proxy servers support

Examples

Deleting contact with index number 5.

With GContacts.NewContact do
begin
  GivenName := 'John';
  PhoneNumbers.NewItem.Value := '+555-55-55';
  EMailAddresses.NewItem.Value := 'email@gmail.com';
  Store;
End;

Adding a new contact "John" with phone number "+555-55-55" and e-mail address "email@gmail.com".

GContacts := TGContacts.Create;
GContacts.ClientID := '_your_client_id_';
GContacts.ClientSecret := '_your_client_secret_';
GContacts.LoadContacts;
for I := 0 to GContacts.ContactsCount - 1 do
  ListBox1.Items.Add(GContacts.Contacts[I].DisplayName);
GContacts.Free;

Connecting to Google Contacts and showing list of Contacts in listbox.

GContacts.DeleteContact(5);



Compiled Demo Screenshots


    






Buy at Tokopedia!

Buy Now!

Tags: Google Contacts Delphi Component, Sync-Components, Delphi, Data Access and Storage, google