Download Google Contacts Delphi Component 3.0 for Delphi 10.4 Sydney Cracked

Google Contacts Delphi Component 3.0 for Delphi 10.4 Sydney Cracked

Google Contacts Delphi Component 3.0 for Delphi 10.4 Sydney Cracked
Google Contacts Delphi Component 3.0 for Delphi 10.4 Sydney Cracked


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
Connecting to Google Contacts and showing list of Contacts in listbox.

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;


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

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


Only for V.I.P
Warning! You are not allowed to view this text.