Toodledo Delphi Component

Toodledo Delphi component is a non-visual component that allows you to work with Toodledo online service. The component supports Delphi 7 and higher Delphi versions and works directly with Toodledo using official API.

Features

  • Load folders, tasks and notes
  • Create and edit folders
  • Create and edit tasks and notes
  • Ability to structure tasks
  • Unicode support for all text fields

Examples

Connecting to Toodledo and showing list of tasks in listbox.

Toodledo := TToodledo.Create;
Toodledo.Connect('email@address.com', 'password');
Toodledo.LoadTasks;
for I := 0 to Toodledo.TasksCount - 1 do
  ListBox1.Items.Add(Toodledo.Tasks[I].Title);

Adding a new task "Buy milk" with some notes.

With Toodledo.NewTask do
begin
  Title := 'Buy milk';
  Note := 'Some notes';
  Store;
End;

Deleting a task with index number 5.

Toodledo.DeleteTask(5);

$149

Buy

With source codes

$79

Without source codes

Buy

Download working example.

Note! The trial version of the component is available upon request.

Version History

TDC 2.01

Mar. 11, 2013

View info

TDC 2.0

Feb. 19, 2013

View info

TDC 1.0

Feb. 15, 2012

View info

More Version History