Click here to Skip to main content
15,890,527 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 59.1M   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

 
GeneralRe: File Link: No drag&drop in Cal, Gantt, Stat Pin
.dan.g.1-Jun-15 14:42
professional.dan.g.1-Jun-15 14:42 
AnswerRe: ToDoList 7.0.A3 Pin
David J. Fetterman1-Jun-15 3:15
David J. Fetterman1-Jun-15 3:15 
GeneralRe: ToDoList 7.0.A3 Pin
Pierre de la Verre1-Jun-15 3:22
Pierre de la Verre1-Jun-15 3:22 
GeneralRe: ToDoList 7.0.A3 Pin
David J. Fetterman1-Jun-15 5:07
David J. Fetterman1-Jun-15 5:07 
GeneralRe: ToDoList 7.0.A3 Pin
.dan.g.1-Jun-15 14:12
professional.dan.g.1-Jun-15 14:12 
GeneralRe: ToDoList 7.0.A3 Pin
David J. Fetterman2-Jun-15 12:22
David J. Fetterman2-Jun-15 12:22 
BugRe: ToDoList 7.0.A3 Pin
Theberath1-Jun-15 23:04
Theberath1-Jun-15 23:04 
AnswerRe: ToDoList 7.0.A3 Pin
simplenuity2-Jun-15 1:55
simplenuity2-Jun-15 1:55 
Hi Dan,

This version I even can't get started under Linux/Wine anymore for further testing Frown | :(

This is what I get on the command line:
fixme:actctx:parse_depend_manifests
0 0xf754189f strcmpiW+0x2f() in libwine.so.1 (0x0032f2b8)
  1 0x7ed34cc7 MSVCRT__wcsicmp+0x26() in msvcrt (0x0032f2dc)
  2 0x004dd614 in todolist (+0xdd613) (0x7ea54c80)
  3 0xec83f0e4 (0x83e58955)
0xf754189f strcmpiW+0x2f in libwine.so.1: movzwl    0x0(%edx),%eax
Modules:
Module  Address         Debug info  Name (103 modules)
PE    400000-  609000   Export          todolist
PE    f60000-  f9a000   Deferred        ganttchartext
PE    fa0000-  fb1000   Deferred        statisticsext
PE    fd0000-  ff2000   Deferred        calendarext
PE  10000000-1004d000   Deferred        rtfcontentctrl
PE  5f800000-5f8f2000   Deferred        mfc42u
PE  71590000-71617000   Deferred        comctl32
ELF 7ac00000-7ac5f000   Deferred        riched20<elf>
  -PE  7ac10000-7ac5f000   \               riched20
ELF 7b800000-7ba5b000   Deferred        kernel32<elf>
  -PE  7b810000-7ba5b000   \               kernel32
ELF 7bc00000-7bcdb000   Deferred        ntdll<elf>
  -PE  7bc10000-7bcdb000   \               ntdll
ELF 7bf00000-7bf04000   Deferred        <wine-loader>
ELF 7d7bf000-7d800000   Deferred        usp10<elf>
  -PE  7d7d0000-7d800000   \               usp10
ELF 7d91d000-7d933000   Deferred        dwmapi<elf>
  -PE  7d920000-7d933000   \               dwmapi
ELF 7d933000-7d94f000   Deferred        msvcm80<elf>
  -PE  7d940000-7d94f000   \               msvcm80
ELF 7d94f000-7d987000   Deferred        msvcr100<elf>
  -PE  7d960000-7d987000   \               msvcr100
ELF 7d99b000-7d9b4000   Deferred        msftedit<elf>
  -PE  7d9a0000-7d9b4000   \               msftedit
ELF 7d9b4000-7d9eb000   Deferred        uxtheme<elf>
  -PE  7d9c0000-7d9eb000   \               uxtheme
ELF 7d9eb000-7da29000   Deferred        libxslt.so.1
ELF 7da29000-7da4f000   Deferred        liblzma.so.5
ELF 7da4f000-7dba9000   Deferred        libxml2.so.2
ELF 7dbaf000-7dbc3000   Deferred        riched32<elf>
  -PE  7dbb0000-7dbc3000   \               riched32
ELF 7dbc5000-7dbc9000   Deferred        cp1252.so
ELF 7dbc9000-7dc87000   Deferred        msxml3<elf>
  -PE  7dbd0000-7dc87000   \               msxml3
ELF 7dd3c000-7dd61000   Deferred        imm32<elf>
  -PE  7dd40000-7dd61000   \               imm32
ELF 7dd61000-7dd8c000   Deferred        msacm32<elf>
  -PE  7dd70000-7dd8c000   \               msacm32
ELF 7dd8c000-7de46000   Deferred        winmm<elf>
  -PE  7dd90000-7de46000   \               winmm
ELF 7de46000-7de6e000   Deferred        mpr<elf>
  -PE  7de50000-7de6e000   \               mpr
ELF 7de6e000-7deea000   Deferred        wininet<elf>
  -PE  7de80000-7deea000   \               wininet
ELF 7deea000-7df8c000   Deferred        urlmon<elf>
  -PE  7df00000-7df8c000   \               urlmon
ELF 7df8c000-7df92000   Deferred        libxfixes.so.3
ELF 7df92000-7df9d000   Deferred        libxcursor.so.1
ELF 7df9d000-7dfad000   Deferred        libxi.so.6
ELF 7dfad000-7dfb1000   Deferred        libxcomposite.so.1
ELF 7dfb1000-7dfbc000   Deferred        libxrandr.so.2
ELF 7dfbc000-7dfc7000   Deferred        libxrender.so.1
ELF 7dfc7000-7dfcd000   Deferred        libxxf86vm.so.1
ELF 7dfcd000-7dfd1000   Deferred        libxinerama.so.1
ELF 7dfd1000-7dfd8000   Deferred        libxdmcp.so.6
ELF 7dfd8000-7dfdc000   Deferred        libxau.so.6
ELF 7dfdc000-7dffe000   Deferred        libxcb.so.1
ELF 7dffe000-7e132000   Deferred        libx11.so.6
ELF 7e132000-7e145000   Deferred        libxext.so.6
ELF 7e14f000-7e163000   Deferred        msimg32<elf>
  -PE  7e150000-7e163000   \               msimg32
ELF 7e165000-7e1f7000   Deferred        winex11<elf>
  -PE  7e170000-7e1f7000   \               winex11
ELF 7e276000-7e29f000   Deferred        libexpat.so.1
ELF 7e29f000-7e2da000   Deferred        libfontconfig.so.1
ELF 7e2da000-7e302000   Deferred        libpng12.so.0
ELF 7e302000-7e31c000   Deferred        libz.so.1
ELF 7e31c000-7e3bc000   Deferred        libfreetype.so.6
ELF 7e3bc000-7e3de000   Deferred        libtinfo.so.5
ELF 7e3de000-7e403000   Deferred        libncurses.so.5
ELF 7e423000-7e559000   Deferred        oleaut32<elf>
  -PE  7e440000-7e559000   \               oleaut32
ELF 7e559000-7e56d000   Deferred        olepro32<elf>
  -PE  7e560000-7e56d000   \               olepro32
ELF 7e56d000-7e5ee000   Deferred        rpcrt4<elf>
  -PE  7e580000-7e5ee000   \               rpcrt4
ELF 7e5ee000-7e72a000   Deferred        ole32<elf>
  -PE  7e600000-7e72a000   \               ole32
ELF 7e72a000-7e7a4000   Deferred        shlwapi<elf>
  -PE  7e740000-7e7a4000   \               shlwapi
ELF 7e7a4000-7e9d7000   Deferred        shell32<elf>
  -PE  7e7b0000-7e9d7000   \               shell32
ELF 7e9d7000-7eb31000   Deferred        user32<elf>
  -PE  7e9f0000-7eb31000   \               user32
ELF 7eb31000-7eba3000   Deferred        advapi32<elf>
  -PE  7eb40000-7eba3000   \               advapi32
ELF 7eba3000-7ecc0000   Deferred        gdi32<elf>
  -PE  7ebb0000-7ecc0000   \               gdi32
ELF 7ecc0000-7ed68000   Dwarf           msvcrt<elf>
  -PE  7ecd0000-7ed68000   \               msvcrt
ELF 7ef68000-7ef75000   Deferred        libnss_files.so.2
ELF 7ef75000-7ef81000   Deferred        libnss_nis.so.2
ELF 7ef81000-7ef9a000   Deferred        libnsl.so.1
ELF 7ef9a000-7efe0000   Deferred        libm.so.6
ELF 7efe6000-7f000000   Deferred        version<elf>
  -PE  7eff0000-7f000000   \               version
ELF f7347000-f74f5000   Deferred        libc.so.6
ELF f74f5000-f74fa000   Deferred        libdl.so.2
ELF f74fb000-f7517000   Deferred        libpthread.so.0
ELF f7517000-f7520000   Deferred        libnss_compat.so.2
ELF f7537000-f76ec000   Dwarf           libwine.so.1
ELF f76ee000-f7710000   Deferred        ld-linux.so.2
ELF f7710000-f7711000   Deferred        [vdso].so
Threads:
process  tid      prio (all id:s are in hex)
00000008 (D) Z:\home\rs\data\apps\ToDoList_beta\ToDoList\ToDoList.exe
    00000025    0
    00000024    0
    00000009    0 <==
0000000e services.exe
    0000001e    0
    0000001d    0
    00000018    0
    00000016    0
    00000014    0
    00000010    0
    0000000f    0
00000012 winedevice.exe
    0000001c    0
    00000019    0
    00000017    0
    00000013    0
0000001a plugplay.exe
    00000020    0
    0000001f    0
    0000001b    0
00000021 explorer.exe
    00000023    0
    00000022    0">

Sometimes I can see the window frame for a split second.
If you need any further information, please let me know.

Thanks! Smile | :)

PS: Have sent you a few emails regarding the Linux VM. Not sure whether you received them.
BugReport two Bugs about start Date and Quick Find Pin
tonghuali3-Jun-15 17:36
tonghuali3-Jun-15 17:36 
GeneralRe: Report two Bugs about start Date and Quick Find Pin
.dan.g.3-Jun-15 19:33
professional.dan.g.3-Jun-15 19:33 
AnswerRe: ToDoList 7.0.A3 Pin
alexanderino5-Jun-15 12:56
alexanderino5-Jun-15 12:56 
GeneralMy vote of 5 Pin
Hentoiy Razoir26-May-15 10:42
Hentoiy Razoir26-May-15 10:42 
GeneralRe: My vote of 5 Pin
.dan.g.26-May-15 14:21
professional.dan.g.26-May-15 14:21 
SuggestionSuggestion from Poland Pin
Member 1128830724-May-15 22:37
Member 1128830724-May-15 22:37 
GeneralRe: Suggestion from Poland Pin
Pierre de la Verre25-May-15 0:29
Pierre de la Verre25-May-15 0:29 
GeneralRe: Suggestion from Poland Pin
.dan.g.25-May-15 14:35
professional.dan.g.25-May-15 14:35 
GeneralRe: Suggestion from Poland Pin
iamstarbuck26-May-15 6:58
iamstarbuck26-May-15 6:58 
SuggestionTask colour coding Pin
mugrrrr24-May-15 3:31
mugrrrr24-May-15 3:31 
GeneralRe: Task colour coding Pin
.dan.g.24-May-15 15:01
professional.dan.g.24-May-15 15:01 
GeneralRe: Task colour coding Pin
mugrrrr24-May-15 19:58
mugrrrr24-May-15 19:58 
BugEnable full row selection Pin
mugrrrr24-May-15 3:18
mugrrrr24-May-15 3:18 
GeneralRe: Enable full row selection Pin
.dan.g.24-May-15 14:43
professional.dan.g.24-May-15 14:43 
SuggestionDetect Windows power change for timer/logging Pin
iamstarbuck22-May-15 6:35
iamstarbuck22-May-15 6:35 
GeneralRe: Detect Windows power change for timer/logging Pin
.dan.g.22-May-15 20:15
professional.dan.g.22-May-15 20:15 
GeneralRe: Detect Windows power change for timer/logging Pin
Pierre de la Verre22-May-15 21:48
Pierre de la Verre22-May-15 21:48 

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.