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.
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);
Download working example.
Note! The trial version of the component is available upon request.
TDC 2.01
Mar. 11, 2013
TDC 2.0
Feb. 19, 2013
TDC 1.0
Feb. 15, 2012