Google Docs Delphi Component is a non-visual component that allows to work with Google Docs using Delphi. The component supports Delphi 7 and higher versions and works directly with Google using official API. Official API use guarantees maximum compatibility and fewest possible modifications to future versions.
Connecting to Google Documents and showing list of documents in listbox.
GDocuments := TGDocuments.Create;
GDocuments.Connect('Username', 'Password');
for I := 0 to GDocuments.DocumentsCount - 1 do
ListBox1.Items.Add(GDocuments.Documents[I].Name);
GDocuments.Free;
Uploading a document with filename "Document.doc".
GDocuments.FileImport('Document.doc');
Deleting dociment with index number 5.
GDocuments.DeleteDocument(5);
Download working example.
Note! The trial version of the component is available This e-mail address is being protected from spambots. You need JavaScript enabled to view it. .
GDDC 1.0
Dec. 01, 2011