Click here to Skip to main content
15,896,154 members
Articles / Desktop Programming / MFC

ToDoList 8.2 - An Effective and Flexible Way to Keep on Top of Your Tasks

Rate me:
Please Sign up or sign in to vote.
4.85/5 (2,418 votes)
17 Sep 2023Eclipse12 min read 61.5M   441.3K   3.6K   32.8K
A hierarchical task manager with native XML support for custom reporting

Downloads


3rd Party

Note: Please contact the respective authors directly with comments and questions

todolist2/CP_screenshot2.png

Latest Update (8.2 Feature Release)

  • Added 'Markdown' comments
  • Added highlighting of 'Circular Dependencies'
  • Added 'Calculations' to 'Custom Attributes'
  • Added 'Custom Date' attributes to 'Week Planner'
  • Added 'Custom Date' attributes to 'Calendar'
  • Added 'Drag and Drop' from 'Explorer' to 'Spreadsheet' comments
  • Added dedicated toolbar button for creating 'ToDoLIst UDTs'
  • Added 'Recurrence' options to 'Filter Bar'
  • Added '-mp' command line switch to use first decryption password as a 'Master Password'
  • Added toolbar button to 'Find Tasks' dialog to allow closing when docked
  • Added 'Calendar' preferences to show 'Week Number' in cell header
  • Added 'Straight Line Connections' option to 'Mind Map'
  • Added 'Completed Date' to 'Attribute Inheritance'
  • Improved layout of overlapping 'Calendar' tasks
  • Improved handling of 'Due Task Notification' hyperlinks
  • Improved 'Time Tracker' task selection
  • Improved 'Edit Dependency' task selection
  • Improved performance of 'flat' tasklists

Introduction

You know how it is - you start work on one project and halfway through, you find one or two side-projects crop up that have to be solved before you can continue on the original project.

This is one such project with the added twist that it too started its life as a side-project. Here's what happened:

<Cue wavy screen effect>

I can only imagine that the planets must have been in (mis-)alignment or something, because at one point a few months ago, I was suddenly fielding emails on four or five separate articles I had previously submitted to CodeProject, some asking for features and others for bug fixes.

Foolishly or otherwise, I largely agreed with all the points raised, and subsequently found myself with fourteen or fifteen separate issues to resolve.

The situation was also made worse because I was trying to use CodeProject to keep track of all the things I had agreed to do, meaning that I had to continuously trawl the comments section of each article to remind myself of what I was supposed to be working on.

It even got to the stage where I was worrying that I'd fail to deliver on something - silly I know, but there you are!

Keeping a list on paper was a definite step in the right direction, but since I do all my coding on the same machine, it seemed somewhat inelegant, and anyway, we all know what happens to crucial bits of paper left lying around on desks and such.

The next step was to hunt around on the web for a tool to meet the following requirements:

  • Simple interface
  • Support for hierarchical data
  • Numbered items/subitems
  • Open file format
  • Freeware

Simple, huh! not!

I will admit that I did not spend weeks searching, but I am still surprised at the general lack of software matching my needs.

On reflection, I think that the reason may be simple: people are so used to commercial software being 'feature-rich' that when they come to design software themselves, they (not unreasonably) think they too need to cram as much in as possible, often leading to software where a lot of essential functionality is hidden away in the menu bar.

So, surprise, surprise, I decided to write something myself.

However, it's fair to say that I did not originally intend to post it on CodeProject and am only really doing so because I had a heap of fun solving some very interesting problems and these are what I think make it worth it.

Using the Software

There's really very little I need to say here since every feature/function is explicitly visible in the interface.

Nevertheless, the following list of basic capabilities and omissions may go someway to answering any questions that arise:

  • Files are stored in XML format with .xml file extension.
  • Trying to load a non-tasklist file will generally fail (unless you read the code to see how to circumvent it).
  • The number of items/subitems is limited only by memory (although performance may be the deciding factor before you exhaust memory).
  • Marking a parent item as 'done' will also gray-out child items, but they are not disabled or automatically marked as 'done'.
  • An ellipsis (...) indicates that an item has sub-items.
  • All items can be expanded or collapsed (by double-clicking).
  • Top-level items and sub-items are created using different toolbar buttons.
  • There are task-specific context-menus.
  • The previously open tasklists are re-opened on startup.
  • The tasklist is automatically saved when closing the software or minimizing it to the system tray.
  • The priority of a task is shown as a grayscale box to the left of the item.

Points of Interest

Here's where we come to the side-projects I was talking about, the first two of which I intend to work up into follow-up articles.

They are:

  1. The 'ordered' tree control, which incorporates a non-client gutter for displaying the item numbers.

    The idea stemmed from research I did into alternative designs for a tree-list control, which did not solve it by creating a hybrid control incorporating a tree and a list.

    The hybrid control seems such an obvious solution that I suspect few people have stopped to question it, but it has still always struck me as looking far too much like hard work to be truly elegant ('square pegs' and 'round holes' spring to mind).

    One possible idea is to implement the 'list' portion entirely in the non-client area of the tree. I.e., shift the right hand client edge to the left and then render the list portion in the resulting non-client area.

    Whilst I've yet to get round to building a proof of concept, it was nevertheless this ongoing mental debate which prompted me to try to solve the requirement for numbered items and subitems by rendering the item/subitem numbers in the non-client area.

    Without going into too much detail (as this will subsequently be an article of its own), this is how I got it to work:

    • Handle TVM_INSERTITEM and TVM_DELETEITEM to know exactly when items are added and removed.
    • In these handlers recalculate the width of the gutter required to display the widest 'dotted' item/subitem number. (Note: this is not necessarily simply the deepest subitem.)
    • If the required gutter width changes, call SetWindowPos(NULL, 0, 0, 0, 0, SWP_FRAMECHANGED | SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER) to force Windows to recalculate the non-client area of the control.
    • Handle WM_NCCALCSIZE when it does, and offset the left border by the required gutter width.
    • Handle WM_NCPAINT for painting the numbers.

    This is necessarily an over-simplification, but it captures the essence of the solution, and all that essentially remains is lots of fiddling about to ensure the non-client area gets redrawn at the the right times to stay synchronized with the client area.

  2. Embedding .RC control definition data directly in a .cpp file to break the dependency on binary resources (a.k.a. 'Runtime Dialogs').

    This is an idea that has been floating about for quite some time and which has only recently gelled into a workable solution.

    The problem, put simply, is that if you want to take advantage of the resource editor in Visual Studio (and who doesn't), then you very quickly find yourself stuck with having to load dialog templates from resources compiled into the binary file.

    This further means that if you want to make use of a dialog across multiple projects, then either you need to copy and paste the dialog template between project .RC files, or you need to build the dialog into a DLL from which it can be accessed.

    'Runtime Dialogs' (a snappy title I coined myself) is a solution that neatly sidesteps both the nuisance of copying dialog resources between resource files and the extra work (and maintenance) involved in packaging dialogs in DLLs.

    And it works like this:

    • First, you design your dialog template in the resource editor, create a CDialog derived class using class wizard, and wire up all the controls just as you normally would.
    • Next, you #include "runtimedlg.h" and change all instances of CDialog to CRuntimeDlg.
    • Then, you cut and paste the control definition section from the appropriate section in the .RC file and embed it directly in the dialog's .cpp file as a static string (with a bit of tweaking to handle double quotes and such like).
    • Finally, in the constructor of your dialog, you simply call CRuntimeDlg::AddRCControls(...) passing the control definitions as a string.
    • And CRuntimeDlg takes care of the rest including, if required, auto-sizing the dialog to suit the control layout.

    I'm certainly not suggesting that this is a 'win-win' solution for all situations but it certainly has merits in its closer coupling of dialog template to dialog code which makes sharing dialogs across multiple projects a breeze.

    P.S.: In case it's not clear here, I used CRuntimeDlg to create CToDoCtrl which encapsulates the ordered tree together with the priority, date and comments controls as a single simple-to-instantiate control.

    I'm also proposing to use them in the .NET port of my ProjectZip add-in for VC6.

  3. Embedding the XML file in a web page.

    This is possibly the most satisfying aspect of the whole project because it was completely unexpected.

    What I mean is that, until recently, my knowledge of DOM and XMLDOM was virtually non-existent, as it's only since I've become more interested in the presentation of AbstractSpoon that I've been forced to get to grips with the various implementations of DOM and XMLDOM out there.

    I'm pleased to say that the code on my site works under IE 6.0, Netscape 7.1, and Mozilla, although custom code was required to achieve this.

Generic MFC Classes that may prove Useful to You

The following table lists a wide range of utility classes written for this project. They can all be included in any MFC project provided you include any class dependencies too. Feel free to ask any questions relating to these specific classes and how to use them.

Class Name

Description

Class Dependencies
(apart from MFC)

CAboutDlg

Customizable "About...' dialog not requiring a dialog resource. Supports html encoded text

CRuntimeDlg, CRCCtrlParser

CAutoComboBox

Adds only unique items to the drop list and shuffles the list so that the last added item is at the top

CHoldRedraw

CAutoFlag

Encapsulates the setting and unsetting of a boolean variable thru the lifetime of the class instance

 

CColorButton

Non-ownerdraw button that displays the selected colour on the button face and displays the colour dialog when clicked

CEnColorDialog

CColorComboBox

Owner-draw combobox for displaying and selecting user defined colours

 

CDateHelper

Encapsulation of various rountines for calculating date spans and for formatting

 

CDeferWndMove

Encapsulation of the Win32 API

 

CDialogHelper

Re-implementation of the CDialog DDX/DDV rountines to avoid the MFC error messages when the user clears a number edit (for instance)

 

CDlgUnits

Encapsulates the MapDialogRect Win32 API

 

CDockManager

Class for managing the docking of one popup window to another.

*CSubclassWnd, CHoldRedraw, CAutoFlag

CDriveInfo

Encapsulates various rountines for querying about drives, files and disk space

 

CEnBitmap

Adds support to CBitmap for loading non-bmp files and resources.

 

CEnBitmapEx, CColorReplacer, CImageBlurrer, CImageColorizer, CImageContraster, CImageEmbosser, CImageFlipper, CImageGrayer, CImageLightener, CImageNegator, CImageResizer, CImageRotator, CImageSharpener, CImageShearer, CImageSysColorMapper, CImageTinter

Adds image manipulation funationality to CEnBitmap

CEnBitmap

CEnColorDialog

Adds saving and restoring of custom colours to CColorDialog

 

CEnCommandLineInfo

Adds functions for extracting and querying commandline switches

 

CEnEdit

Adds user-defined button capabilities to CEdit

CMaskEdit, CThemed, CDlgUnits

CEnToolBar

Adds support for using alternative resource or file images

 

CFileEdit

Adds buttons for browsing and displaying the file represented by the text in the edit control. Also shows the file's small icon.

CEnEdit, CFolderDialog, CMaskEdit, CDlgUnits, CThemed, CSysImageList

CHoldRedraw

Encapsulates WM_SETREDRAW

 

CHotKeyCtrlEx

Fixes a number of behavioural problems including the handling of certain keypresses

 

CHotTracker

Tracks the cursor movement over user-defined windows and posts event messages as necessary

*CSubclassWnd,

CLimitSingleInstance

Provides simple method to detect if another instance of an app is running

 

CMaskEdit

Adds simple character masking to CEdit

 

CNcGutter

Allows the UI of standard windows controls to be extended by supporting any number of columns to be added to the non-client area of the window. Favours tabular controls like lists, trees, etc

*CSubclassWnd, CHoldRedraw, CThemed, CDlgUnits

COrderedTreeCtrl

CTreeCtrl implementation of CNcGutter displaying a single column showing the hierarchical position of each tree item in '1.2.3.4' notation.

CHoldRedraw, CThemed

CPasswordDialog

Very simple password dialog not requiring a dialog resource

CRuntimeDlg, CRCCtrlParser

CPropertyPageHost

Simpler replacement for CPropertySheet allowing easier creation as a child window

 

CRCCtrlParser

Used by CRuntimeDlg for parsing dialog resource-like text

 

CRuntimeDlg

Adds support to CDialog for building dialogs at runtime ie. dialogs do not require a dialog resource

CRCCtrlParser

CShortcutManager

Class for handling application keyboard shortcuts.

*CSubclassWnd, CWinClasses

CSpellCheckDlg

Spellcheck dialog not requiring a dialog resource, which interfaces with ISpellCheck (interface to Open Office dictionaries)

CRuntimeDlg, CRCCtrlParser, ISpellCheck

CSysImageList

Encapsulates the Windows system image list (file/folder images)

 

CTabCtrlEx

Adds post rendering callback for the tabs without using owner-draw

 

CThemed

Encapsulates themed (XP) and non-themed (the rest) drawing of windows controls

 

CTimeEdit

Adds a button for specifying time units and provided routines for converting time to and from different time units

CEnEdit, CMaskEdit, CThemed, CDlgUnits

CToolbarHelper

Adds support for dialog toolbar tooltips, multiline tooltips and dropbuttons with menus

*CSubclassWnd, CEnBitmap, CEnBitmapEx

CTrayIcon

Encapsulates the Shell_NotifyIcon Win32 API. Also provides balloon tips and animation

*CSubclassWnd,

CUrlRichEditCtrl

Adds support for recognizing urls, clicking them and setting custom url callbacks

 

CWinClasses

Encapsulates the ::GetClassName Win32 functions

 

CXmlFile, CXmlItem

Non-Unicode class for reading and writing xml files

 

CXmlFileEx

Adds encryption capabilities to CXmlFile

CXmlFile, IEncryption

* CSubclassWnd was originally written by Paul DiLascia for MSJ magazine. The version I use has been heavily extended to suit my specific needs. The classes that depend on it here need this extended version.

Further Work

Whilst this tool was originally intended for my personal use only, it is now a 'community' project, so if you find it useful and want to make suggestions for enhancements or bug fixes, please post to our Google Group.

History

  • History now held here
  • 1.1-7.1 (removed by .dan.g.)
  • 1.0 (4 Nov 2003)

License

This article, along with any associated source code and files, is licensed under The Eclipse Public License 1.0


Written By
Software Developer Maptek
Australia Australia
.dan.g. is a naturalised Australian and has been developing commercial windows software since 1998.

Comments and Discussions

 
Question6.2.8.: switching to an encrypted file Pin
verithin16-Sep-11 0:17
verithin16-Sep-11 0:17 
AnswerRe: 6.2.8.: switching to an encrypted file Pin
.dan.g.16-Sep-11 19:32
professional.dan.g.16-Sep-11 19:32 
GeneralRe: 6.2.8.: switching to an encrypted file Pin
verithin17-Sep-11 8:09
verithin17-Sep-11 8:09 
GeneralRe: 6.2.8.: switching to an encrypted file Pin
.dan.g.17-Sep-11 18:18
professional.dan.g.17-Sep-11 18:18 
QuestionIs there an existing sample project file for todolist? Pin
pstein12-Sep-11 19:40
pstein12-Sep-11 19:40 
AnswerRe: Is there an existing sample project file for todolist? Pin
.dan.g.12-Sep-11 19:58
professional.dan.g.12-Sep-11 19:58 
QuestionFor JOCHEN (Re: Encryption issues with TDL 6.3 beta) Pin
.dan.g.12-Sep-11 15:28
professional.dan.g.12-Sep-11 15:28 
AnswerRe: For JOCHEN (Re: Encryption issues with TDL 6.3 beta) -> [Update with test results] Pin
TCP_JM12-Sep-11 20:12
TCP_JM12-Sep-11 20:12 
Hi Dan,

As promised I updated this message!

It'll be done, but give me two or three days, please, because I'll be very busy during the next two days.
The 'due date' of one of my big tasks has been postponed (I have to wait for an information). So it's very likely that I'll be busy during the weekend Dead | X| but this is good for you ... I can provide the test a little earlier.

"Preliminary":
UNICODE tasklists (created with 6.3, of course) cannot be opened with 6.2 whether these lists are encrypted or not.
That was to be expected from the beginning, but I tested this nevertheless.

- - -
Another question is the compatibility between 6.2 and 6.3 (that is part of the test).

Is it necessary that 6.3 can open tasklists created with 6.2? YES

It is also necessary that 6.2 can open tasklists created with 6.3?
The answer is not necessarily 'yes' but I think it is great that it can be done. But this cannot be expected for all the following versions of ToDoList, right? Users cannot expect that 6.2 can open tasklists created with e.g. ToDoList 7.5, but it can be expected that users update their version from time to time (at least if they are exchanging tasklists with other users of ToDoList that are working with higher versions). Nevertheless: ToDoList 7.5 should still be able to read lists created with 6.2 (this would be ideal).

- - -

The tests:

The first test followed #1 to #10 of your list. I got the same results than you did.

#11 of your list asked for more, so I forgot for a moment about your list and started to write my own test-list to get a new perspective.
(at the end of the day I did a lot of testing twice because of the two test lists and some 'mayhem' tests, but ...)

The test (basics):

* tasklist ANSI (created with 6.2), saved with 6.2
	can it be opened with 6.2? -> YES
	can it be opened with 6.3? -> YES
* tasklist ANSI (created  with 6.3), saved  6.3
	can it be opened with 6.2? -> YES
	can it be opened with 6.3? -> YES
* tasklist originally ANSI (created with 6.2), saved as UNICODE (with 6.3)
	can it be opened with 6.2? -> NO (as expected)
	can it be opened with 6.3? -> YES
* tasklist originally ANSI (created with 6.3), saved as UNICODE (with 6.3)
	can it be opened with 6.2? -> NO (as expected)
	can it be opened with 6.3? -> YES
* tasklist ANSI (created with 6.2), saved with 6.2 encrypted (still ANSI)
	can it be opened with 6.2? -> YES
	can it be opened with 6.3? -> YES
* tasklist ANSI (created with 6.3), saved with 6.3 encrypted (still ANSI)
	can it be opened with 6.2? -> YES
	can it be opened with 6.3? -> YES
* tasklist ANSI (created with 6.2), saved as UNICODE (with 6.3) and saved again as ANSI with 6.3
	can it be opened with 6.2? -> YES
	can it be opened with 6.3? -> YES
* tasklists ANSI (created with 6.3), saved as UNICODE  (with 6.3) and saved again as ANSI with 6.3
	can it be opened with 6.2? -> YES
	can it be opened with 6.3? -> YES
* tasklists UNICODE  (created with 6.3), saved as ANSI with 6.3
	can it be opened with 6.2? -> YES
	can it be opened with 6.3? -> YES



The tests ("advanced"):

Based on the tests I described above I did some tests like this too:

* tasklist ANSI created with 6.2 saved with 6.2, opened with 6.3 saved with 6.3
	can it be opened with 6.2? -> YES
* tasklist ANSI created with 6.3 saved with 6.3, opened with 6.2 saved with 6.2
	can it be opended with 6.3? -> YES
* tasklist ANSI created with 6.2. then encrypted with 6.2 and saved and closed and opened again and then un-encrypted with 6.2
	can it be opened with 6.2? -> YES
	can it be opened with 6.3? -> YES
* tasklist ANSI created with 6.2. then encrypted with 6.2, opened with 6.3 and then un-encrypted with 6.3
	can it be opened by 6.2? -> YES
	can it be opened by 6.3? -> YES
* tasklist ANSI created with 6.3. then encrypted with 6.3 opened with 6.3 and then un-encrypted with 6.3
	can it be opened by 6.2? -> YES
	can it be opened by 6.3? -> YES
* tasklist ANSI created with 6.2. then encrypted with 6.2 opened with 6.2 and then un-encrypted with 6.2
	can it be opened by 6.2? -> YES 
	can it be opened by 6.3? -> YES
* tasklist ANSI created with 6.3. then encrypted with 6.3 opened with 6.2 then un-encrypted with 6.2
	can it be opened by 6.2? -> YES
	can it be opened by 6.3? -> YES


[I hope I didn't make any typos regarding the versions Unsure | :~ ]

Two more tests:
I always used the passwords 'asdf' and '789' except for two tests with 6.2. and two with 6.3 where I used '1234567890' resp. 'asdfghjklyxcvbnmqwertzuiop' to "make sure" that longer passwords are not causing problems.

I tested also this (not with all the above options, but two tests with 6.3 and two with 6.2):
Created a new tasklist with one task and tested if makes a difference if I encrypt the tasklist first and then save it or if I save the tasklist first and then encrypt it.
I didn't ran into any problems here. But I still think that it makes more sence (to be on the safe side) to save it first and then encrypt it.

Hope this helps.

Cheers,
Jochen



P.S.
I think it's great that ToDoList offers the encryption feature but I have to admit that I've never used it since I store all my confidential files (files from different programs) in some sort of an encrypted "container". So I didn't have a closer look at this ToDoList feature before this test.

Allow me to make a few suggestions and a remark about the security that this encryption feature provides (aspect: backups).

1.) Changing the password
During the tests I wanted to change the password a couple of times. Not that comfortable. Sorry.
At the moment the user has to un-encrypt an encrypted tasklist and then encrypt it again with a new passwort. Or did I miss an option?
A 'change password' option in the password window might be an idea. Just a thought.


2.) Loading of encrypted tasklists
Let's say you have three lists open and loaded. The third list is the encrypted one. Click on the tab of the second list.
Close ToDoList and start it again. ToDoList starts and opens (and loads) all the lists and asks for the password of the third list.
Remember: The focus is was on the second list.
a) If the user clicks on the 'cancel' button, the encrypted list doesn't even get opened (not talking about 'loaded'). ToDoList sets the focus on the second list then.
b) If the user anwers with the password and 'ok' ToDoList opens the encrypted tasklist and then focusses on the second list (as expected).
c) If the user wants to have a look at his encrypted tasklist later on he has to enter the password again (!).
d) If he refuses and pushes the 'cancel' button the focus of ToDoList jumps back to the list that had the focus before the user clicked on the tab of the encrypted tasklist.

Frankly I'd expect a little different behaviour regarding a)
The behaviour of b), c) and d) is good (also for security reasons), but I'd like to suggest that the user should have the choice whether he wants to enter his password once (during a ToDoList session) or all the time when switching tasklists (if there is a preference for that, sorry, I missed it).

The behaviour of a) is "suboptimal" IMO.
I'd expect ToDoList to behave in the same way as in 'enable delayed loading of tasklists' if the user refuses to enter his password by pushing 'cancel' when ToDoList starts. That is to say the encrypted tasklist should be opened but not loaded = the tab of that encrypted list should appear in tasklist tabbar.
More: I'd expect ToDoList not to ask for the password if the encrypted tasklist wasn't the last one the user was working on.
If - like in my example - the second list had the focus before the user exits ToDoList and starts ToDoList again, ToDoList shouldn't even ask for the password in this very moment. ToDoList should show the tab but shouldn't load the tasklist and set the focus on the second list. That would be great.
Only suggestions, of course.


3.) Older backups
One thing that is very critical - sorry - is that the encryption feature doesn't take care of the backups!
You can't possibly cover all possible situations to make sure that a user's confidential data is safe, but regarding the backup folder it should definitely be done.
Let's assume a user collects data in a non-encrypted list and has enabled the backup option (e.g. keep 100, all). Then he decides to encrypt his tasklist.
This doesn't effect the older backups. And that is a severe security problem.
Two options: ToDoList deletes - no - better !!! erases !!! - (after asking the user if he wants that) all the not encrypted backups (probably the best solution) or ToDoList encrypts them all in the backround (which could theoretically be a good solution, too.).

Another security aspect could be - I didn't check if ToDoList does this - if ToDoList creates tmp-files of the tasklist files somewhere on the harddrive.
These should be erased too. This is could be a problem too if one uses ToDoList on a USB stick and works on different computers that are not his own and uses not encrypted tasklists !!! The leaving of traces on somebody else's computer is suboptimal - at least.

We have a similar "problem" (if I'm not mistaken) with the pictures that get put in a temp folder by ToDoList.
Quote: "supplying an alternative image folder to 'Temp' is a non-trivial change and will have to wait until 6.3"
http://www.codeproject.com/Messages/3866945/Re-html-images-for-firefox-Fix-shiftpluscursor-sel.aspx

Sorry, if I sound sceptical / critical, but if ToDoList is also meant for providing security we have to dig a little deeper ...
GeneralRe: For JOCHEN (Re: Encryption issues with TDL 6.3 beta) Pin
.dan.g.13-Sep-11 1:08
professional.dan.g.13-Sep-11 1:08 
GeneralRe: For JOCHEN (Re: Encryption issues with TDL 6.3 beta) -> [Update with test results] Pin
.dan.g.14-Sep-11 14:47
professional.dan.g.14-Sep-11 14:47 
GeneralRe: For JOCHEN (Re: Encryption issues with TDL 6.3 beta) -> [Update with test results] Pin
TCP_JM15-Sep-11 20:06
TCP_JM15-Sep-11 20:06 
GeneralRe: For JOCHEN (Re: Encryption issues with TDL 6.3 beta) -> About Box Pin
TCP_JM18-Sep-11 20:26
TCP_JM18-Sep-11 20:26 
GeneralRe: For JOCHEN (Re: Encryption issues with TDL 6.3 beta) -> [Update with test results] Pin
.dan.g.14-Sep-11 15:06
professional.dan.g.14-Sep-11 15:06 
GeneralRe: For JOCHEN (Re: Encryption issues with TDL 6.3 beta) -> [Update with test results] Pin
.dan.g.16-Sep-11 19:31
professional.dan.g.16-Sep-11 19:31 
GeneralRe: For JOCHEN (Re: Encryption issues with TDL 6.3 beta) -> [Update with test results] Pin
TCP_JM16-Sep-11 20:07
TCP_JM16-Sep-11 20:07 
GeneralRe: For JOCHEN (Re: Encryption issues with TDL 6.3 beta) -> [Update with test results] Pin
.dan.g.16-Sep-11 22:25
professional.dan.g.16-Sep-11 22:25 
GeneralRe: For JOCHEN (Re: Encryption issues with TDL 6.3 beta) -> [Update with test results] Pin
TCP_JM16-Sep-11 23:29
TCP_JM16-Sep-11 23:29 
SuggestionRemaining time for parent tasks [modified] Pin
risbomf11-Sep-11 22:10
risbomf11-Sep-11 22:10 
GeneralRe: Remaining time for parent tasks Pin
.dan.g.12-Sep-11 13:45
professional.dan.g.12-Sep-11 13:45 
NewsCollect, Cut and Paste: CCP a tool written for ToDoList Pin
TCP_JM11-Sep-11 7:19
TCP_JM11-Sep-11 7:19 
AnswerRe: Collect, Cut and Paste: CCP a tool written for ToDoList Pin
.dan.g.12-Sep-11 13:46
professional.dan.g.12-Sep-11 13:46 
GeneralRe: Collect, Cut and Paste: CCP a tool written for ToDoList Pin
TCP_JM12-Sep-11 20:43
TCP_JM12-Sep-11 20:43 
GeneralRe: Collect, Cut and Paste: CCP a tool written for ToDoList Pin
pludikhu16-Sep-11 2:00
pludikhu16-Sep-11 2:00 
GeneralRe: Collect, Cut and Paste: CCP a tool written for ToDoList Pin
TCP_JM16-Sep-11 2:27
TCP_JM16-Sep-11 2:27 
QuestionKiller feature - allow one task in multiple folders! Pin
shlomiw10-Sep-11 23:24
shlomiw10-Sep-11 23:24 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.