Click here to Skip to main content
15,887,398 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 58.2M   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

 
QuestionTranslations Pin
Wojciech Ziembla19-Sep-11 0:49
Wojciech Ziembla19-Sep-11 0:49 
AnswerRe: Translations Pin
chris_go19-Sep-11 1:09
professionalchris_go19-Sep-11 1:09 
AnswerRe: Translations Pin
.dan.g.19-Sep-11 19:50
professional.dan.g.19-Sep-11 19:50 
GeneralRe: Translations Pin
TCP_JM19-Sep-11 20:16
TCP_JM19-Sep-11 20:16 
GeneralRe: Translations Pin
.dan.g.29-Sep-11 15:32
professional.dan.g.29-Sep-11 15:32 
GeneralRe: Translations Pin
TCP_JM29-Sep-11 23:28
TCP_JM29-Sep-11 23:28 
GeneralRe: Translations Pin
.dan.g.1-Oct-11 22:26
professional.dan.g.1-Oct-11 22:26 
QuestionProcmon shows a lot of activity from ToDoList Pin
franjorge19-Sep-11 0:37
franjorge19-Sep-11 0:37 
Hi,

Troubleshooting a performance issue in my laptop, I have noticed that ToDoList (v6.3) is generating a lot of activity, at least this is what Procmon is showing:

VB
12:12:57,3267409    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:12:57,4689402    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:12:57,4693202    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:12:57,4698730    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:12:57,4698903    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:12:57,4699202    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:12:57,4699644    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:12:58,3146555    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:12:58,4681574    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:12:58,4682924    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:12:58,4684659    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:12:58,4684731    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:12:58,4684849    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:12:58,4685019    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:12:59,3144108    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:12:59,4693788    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:12:59,4698116    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:12:59,4701644    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:12:59,4701719    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:12:59,4701842    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:12:59,4702013    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:00,3143200    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:00,4702963    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:00,4704882    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:00,4706608    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:00,4706681    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:00,4706796    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:00,4706955    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:01,3144292    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:01,4674247    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:01,4675549    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:01,4677473    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:01,4677543    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:01,4677655    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:01,4677811    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:02,3155587    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:02,4689140    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:02,4693352    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:02,4698906    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:02,4699099    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:02,4703549    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:02,4706449    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:03,3173813    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:03,4691626    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos   SUCCESS Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a, OpenResult: Opened
12:13:03,4692813    ToDoList.exe    4716    QueryDirectory  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Filter: Datos móviles.tdl, 1: Datos móviles.tdl
12:13:03,4693850    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos   SUCCESS
12:13:03,4694297    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos   SUCCESS
12:13:03,4699730    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:03,4703348    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:03,4708854    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:03,4709030    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:03,4709324    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:03,4709782    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:04,3156062    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:04,4689168    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:04,4692886    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:04,4698401    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:04,4698582    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:04,4698881    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:04,4699328    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:05,3156241    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:05,4691092    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:05,4694867    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:05,4700398    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:05,4700594    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:05,4701191    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:05,4701722    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:06,3156576    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:06,4691472    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:06,4695230    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:06,4701197    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:06,4701373    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:06,4701675    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:06,4702125    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:07,3156808    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:07,4695791    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:07,4699554    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:07,4705091    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:07,4705276    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:07,4705580    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:07,4706024    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:08,3157263    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:08,4687732    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:08,4692322    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:08,4697820    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:08,4698004    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:08,4698308    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:08,4698761    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:09,3157224    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:09,4689430    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:09,4693199    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:09,4698705    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:09,4698889    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:09,4699191    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:09,4699641    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:10,3162147    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:10,4692154    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:10,4695925    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:10,4701471    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:10,4701650    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:10,4701954    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:10,4702404    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:11,3157987    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:11,4692760    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:11,4696557    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:11,4702138    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:11,4702326    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:11,4702627    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:11,4703077    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:12,3158160    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.722.176
12:13:12,4692836    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:12,4696599    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:12,4702152    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:12,4702516    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:12,4702937    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:12,4703460    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS
12:13:13,3158493    ToDoList.exe    4716    Process Profiling       SUCCESS User Time: 0.6562500 seconds, Kernel Time: 3.2500000 seconds, Private Bytes: 5.591.040, Working Set: 12.730.368
12:13:13,4691268    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos   SUCCESS Desired Access: Read Data/List Directory, Synchronize, Disposition: Open, Options: Directory, Synchronous IO Non-Alert, Attributes: n/a, ShareMode: Read, Write, AllocationSize: n/a, OpenResult: Opened
12:13:13,4692819    ToDoList.exe    4716    QueryDirectory  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Filter: Datos móviles.tdl, 1: Datos móviles.tdl
12:13:13,4693822    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos   SUCCESS
12:13:13,4694269    ToDoList.exe    4716    IRP_MJ_CLOSE    D:\t148594\Mis documentos   SUCCESS
12:13:13,4699320    ToDoList.exe    4716    QueryOpen   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:13,4702910    ToDoList.exe    4716    CreateFile  D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS Desired Access: Read Attributes, Disposition: Open, Options: Open Reparse Point, Attributes: n/a, ShareMode: Read, Write, Delete, AllocationSize: n/a, OpenResult: Opened
12:13:13,4708399    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl FAST IO DISALLOWED
12:13:13,4708569    ToDoList.exe    4716    QueryBasicInformationFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS CreationTime: 04/11/2010 15:00:11, LastAccessTime: 19/09/2011 12:10:18, LastWriteTime: 07/09/2011 16:05:12, ChangeTime: 07/09/2011 16:15:18, FileAttributes: A
12:13:13,4708868    ToDoList.exe    4716    CloseFile   D:\t148594\Mis documentos\Datos móviles.tdl SUCCESS



As you can see, the tdl file is being accessed two or three times per second. I do not know if this is an expected behavior, but I thought I would let you know, just in case Smile | :)

Regards,
Fran
AnswerRe: Procmon shows a lot of activity from ToDoList Pin
.dan.g.19-Sep-11 19:51
professional.dan.g.19-Sep-11 19:51 
QuestionSmall unicode XML buglet [modified] Pin
Wojciech Ziembla19-Sep-11 0:18
Wojciech Ziembla19-Sep-11 0:18 
QuestionRe: Small unicode XML buglet Pin
.dan.g.19-Sep-11 20:00
professional.dan.g.19-Sep-11 20:00 
AnswerRe: Small unicode XML buglet Pin
Wojciech Ziembla19-Sep-11 20:26
Wojciech Ziembla19-Sep-11 20:26 
GeneralRe: Small unicode XML buglet Pin
.dan.g.20-Sep-11 13:30
professional.dan.g.20-Sep-11 13:30 
GeneralRe: Small unicode XML buglet Pin
Wojciech Ziembla20-Sep-11 20:59
Wojciech Ziembla20-Sep-11 20:59 
GeneralRe: Small unicode XML buglet Pin
pludikhu22-Sep-11 1:39
pludikhu22-Sep-11 1:39 
QuestionSupport for views. Pin
prcontact@hotmail.com18-Sep-11 18:41
prcontact@hotmail.com18-Sep-11 18:41 
Question'FILE' could not be opened because it is encrypted and you do not have the encryption component installed. Pin
philip andrew18-Sep-11 3:09
philip andrew18-Sep-11 3:09 
AnswerRe: 'FILE' could not be opened because it is encrypted and you do not have the encryption component installed. [modified] Pin
TCP_JM18-Sep-11 5:43
TCP_JM18-Sep-11 5:43 
GeneralRe: 'FILE' could not be opened because it is encrypted and you do not have the encryption component installed. Pin
.dan.g.18-Sep-11 16:07
professional.dan.g.18-Sep-11 16:07 
GeneralRe: Encryption (workaround works) / purpose of files Pin
TCP_JM18-Sep-11 20:18
TCP_JM18-Sep-11 20:18 
GeneralRe: Encryption (workaround works) / purpose of files Pin
.dan.g.19-Sep-11 19:52
professional.dan.g.19-Sep-11 19:52 
GeneralRe: Encryption (workaround works) / purpose of files Pin
TCP_JM19-Sep-11 20:00
TCP_JM19-Sep-11 20:00 
GeneralRe: Encryption (workaround works) / purpose of files Pin
.dan.g.19-Sep-11 20:03
professional.dan.g.19-Sep-11 20:03 
GeneralRe: Encryption (workaround works) / purpose of files Pin
TCP_JM19-Sep-11 20:24
TCP_JM19-Sep-11 20:24 
GeneralRe: Encryption (workaround works) / purpose of files Pin
.dan.g.19-Sep-11 20:01
professional.dan.g.19-Sep-11 20:01 

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.