Click here to Skip to main content
15,885,365 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 57.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

 
GeneralRe: Adding button that erases all chosen priorities, people tags, categories. Pin
iamstarbuck29-Jan-19 11:49
iamstarbuck29-Jan-19 11:49 
SuggestionCreation Date and Default Category Pin
woodywood24514-Jul-18 22:26
woodywood24514-Jul-18 22:26 
GeneralRe: Creation Date and Default Category Pin
.dan.g.18-Jul-18 0:56
professional.dan.g.18-Jul-18 0:56 
QuestionUDTs - Can they be used for operations i.e. calculation (and if so, what language, syntax etc)? Pin
Jon75329-Jun-18 9:26
Jon75329-Jun-18 9:26 
AnswerRe: UDTs - Can they be used for operations i.e. calculation (and if so, what language, syntax etc)? Pin
.dan.g.18-Jul-18 0:57
professional.dan.g.18-Jul-18 0:57 
QuestionAdd more option to recurrence Pin
Member 1384857928-May-18 20:10
Member 1384857928-May-18 20:10 
AnswerRe: Add more option to recurrence Pin
Patrice T6-Jul-18 5:10
mvePatrice T6-Jul-18 5:10 
QuestionLinux instructions don't seem to work anymore (wine 3.1, manjaro) Pin
motocarro23-Feb-18 2:14
motocarro23-Feb-18 2:14 
Here's what I get when I run wine Todolist.exe:

PERL
0009:fixme:actctx:parse_depend_manifests Could not find dependent assembly L"Microsoft.Windows.Common-Controls" (6.0.0.0)
0009:err:module:load_builtin_dll failed to load .so lib for builtin L"l3codeca.acm": libmpg123.so.0: cannot open shared object file: No such file or directory
0009:err:winediag:ODBC_LoadDriverManager failed to open library "libodbc.so": libodbc.so: cannot open shared object file: No such file or directory
0009:fixme:msvcrt:__clean_type_info_names_internal (0x10007030) stub
0009:err:winediag:ODBC_LoadDriverManager failed to open library "libodbc.so": libodbc.so: cannot open shared object file: No such file or directory
0009:fixme:msvcrt:__clean_type_info_names_internal (0xa57030) stub
0009:fixme:wtsapi:WTSRegisterSessionNotification Stub 0x1018e 0x00000000
0009:fixme:ntdll:NtLockFile I/O completion on lock not implemented yet
0009:fixme:richedit:ME_HandleMessage EM_GETLANGOPTIONS: stub
0009:err:module:DelayLoadFailureHook failed to delay load comctl32.dll.HIMAGELIST_QueryInterface
wine: Call from 0x7b43d06c to unimplemented function comctl32.dll.HIMAGELIST_QueryInterface, aborting
wine: Unimplemented function comctl32.dll.HIMAGELIST_QueryInterface called at address 0x5c0023:0x7b43d06c (thread 0009), starting debugger...
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
Unhandled exception: unimplemented function comctl32.dll.HIMAGELIST_QueryInterface called in 32-bit code (0x7b43d06c).
002f:fixme:dbghelp:elf_search_auxv can't find symbol in module
Register dump:
 CS:0023 SS:002b DS:002b ES:002b FS:0063 GS:006b
 EIP:7b43d06c ESP:0031bc24 EBP:0031bca8 EFLAGS:00000216(   - --  I   -A-P- )
 EAX:7b4299b9 EBX:00000004 ECX:0031bc50 EDX:0031bcd4
 ESI:7e5ff36f EDI:7e5ff36f
Stack dump:
0x0031bc24:  00000025 0031bc68 7bc3d838 7b4929c1
0x0031bc34:  0031bcc0 7b7e7389 80000100 00000001
0x0031bc44:  00000000 7b43d06c 00000002 7e5ff36f
0x0031bc54:  7e5ff594 7bc3d7b1 f7eeb000 00000001
0x0031bc64:  7b7e7388 0031bca8 f7d4d5a0 00000001
0x0031bc74:  7b7e7388 7b492c28 7b4929c1 0031bcc0
19400c: sel=ca0067 base=00000000 limit=00000000 16-bit rw-
Backtrace:
=>0 0x7b43d06c in kernel32 (+0x1d06c) (0x0031bca8)
  1 0x7b45b5be DelayLoadFailureHook+0x5d() in kernel32 (0x0031bcf8)
  2 0x7e5afb38 in shell32 (+0x8fb37) (0x0031bd48)
  3 0x7e52cb40 in shell32 (+0xcb3f) (0x0031bdb8)
  4 0x7e573182 SHGetImageList+0xc1() in shell32 (0x0031bdb8)
  5 0x7e5525a2 SHGetFileInfoW+0x7c1() in shell32 (0x0031c538)
  6 0x0050debd in todolist (+0x10debc) (0x0031ca7c)
  7 0x0049ad8f in todolist (+0x9ad8e) (0x0031cad4)
  8 0x0041b23b in todolist (+0x1b23a) (0x0031cb10)
  9 0x004021dc in todolist (+0x21db) (0x0031cb48)
  10 0x7e80ddab in user32 (+0x9ddaa) (0x0031cb98)
  11 0x7e81061f in user32 (+0xa061e) (0x0031cbe8)
  12 0x7e79f394 DefDlgProcW+0x73() in user32 (0x0031cc38)
  13 0x7e80d66a WINPROC_wrapper+0x19() in user32 (0x0031cc78)
  14 0x7e80dcb7 in user32 (+0x9dcb6) (0x0031ccb8)
  15 0x7e81041b CallWindowProcW+0xaa() in user32 (0x0031cd18)
  16 0x5f801d93 in mfc42u (+0x1d92) (0x0031cd40)
  17 0x5f801dbd in mfc42u (+0x1dbc) (0x0031cde0)
  18 0x5f8019d1 in mfc42u (+0x19d0) (0x0031ce00)
  19 0x5f80195a in mfc42u (+0x1959) (0x0031ce60)
  20 0x5f8018e2 in mfc42u (+0x18e1) (0x0031ce7c)
  21 0x5f8018a1 in mfc42u (+0x18a0) (0x0031cea8)
  22 0x7e80d66a WINPROC_wrapper+0x19() in user32 (0x0031ced8)
  23 0x7e80dcb7 in user32 (+0x9dcb6) (0x0031cf18)
  24 0x7e81013a in user32 (+0xa0139) (0x0031cf68)
  25 0x7e7d18ce in user32 (+0x618cd) (0x0031cfd8)
  26 0x7e7d88de in user32 (+0x688dd) (0x0031d038)
  27 0x7e7d8b80 SendMessageW+0x5f() in user32 (0x0031d088)
  28 0x7e7a4921 in user32 (+0x34920) (0x0031d378)
  29 0x7e7a56ba CreateDialogIndirectParamAorW+0x39() in user32 (0x0031d3a8)
  30 0x7e7a57d2 CreateDialogIndirectParamW+0x31() in user32 (0x0031d3e8)
  31 0x5f817b05 in mfc42u (+0x17b04) (0x0031d45c)
0x7b43d06c: addl        $12,%esp
Modules:
Module  Address                 Debug info      Name (102 modules)
PE        400000-  633000       Export          todolist
PE        950000-  96f000       Deferred        burndownext
PE        970000-  9a4000       Deferred        calendarext
PE        9b0000-  9f8000       Deferred        ganttchartext
PE        a00000-  a50000       Deferred        kanbanboard
PE      10000000-1005e000       Deferred        rtfcontentctrl
PE      5f800000-5f8f2000       Export          mfc42u
PE      71590000-71617000       Deferred        comctl32
ELF     79a6a000-7b400000       Deferred        libicudata.so.60
ELF     7b400000-7b7e8000       Dwarf           kernel32<elf>
  \-PE  7b420000-7b7e8000       \               kernel32
ELF     7bc00000-7bcf9000       Deferred        ntdll<elf>
  \-PE  7bc10000-7bcf9000       \               ntdll
ELF     7c000000-7c004000       Deferred        <wine-loader>
ELF     7ce5d000-7ce77000       Deferred        msftedit<elf>
  \-PE  7ce60000-7ce77000       \               msftedit
ELF     7ce77000-7cefb000       Deferred        riched20<elf>
  \-PE  7ce80000-7cefb000       \               riched20
ELF     7cefb000-7cf13000       Deferred        wtsapi32<elf>
  \-PE  7cf00000-7cf13000       \               wtsapi32
ELF     7cf13000-7cf59000       Deferred        usp10<elf>
  \-PE  7cf20000-7cf59000       \               usp10
ELF     7cf59000-7cf75000       Deferred        libgcc_s.so.1
ELF     7d0f0000-7d2aa000       Deferred        libicuuc.so.60
ELF     7d2aa000-7d42a000       Deferred        libxml2.so.2
ELF     7d432000-7d46a000       Deferred        uxtheme<elf>
  \-PE  7d440000-7d46a000       \               uxtheme
ELF     7d46a000-7d550000       Deferred        msxml3<elf>
  \-PE  7d480000-7d550000       \               msxml3
ELF     7d6c9000-7d6d0000       Deferred        libxfixes.so.3
ELF     7d6d0000-7d6dc000       Deferred        libxcursor.so.1
ELF     7d6dc000-7d6ef000       Deferred        libxi.so.6
ELF     7d6ef000-7d83c000       Deferred        libx11.so.6
ELF     7d83c000-7d8c9000       Deferred        winex11<elf>
  \-PE  7d850000-7d8c9000       \               winex11
ELF     7d92a000-7d937000       Deferred        libxrandr.so.2
ELF     7d937000-7d943000       Deferred        libxrender.so.1
ELF     7d943000-7d94a000       Deferred        libxxf86vm.so.1
ELF     7d94a000-7d975000       Deferred        libxcb.so.1
ELF     7d975000-7d989000       Deferred        riched32<elf>
  \-PE  7d980000-7d989000       \               riched32
ELF     7d98b000-7d98f000       Deferred        cp1252.so
ELF     7d9b5000-7d9d9000       Deferred        imm32<elf>
  \-PE  7d9c0000-7d9d9000       \               imm32
ELF     7da62000-7da94000       Deferred        libexpat.so.1
ELF     7da94000-7dadf000       Deferred        libfontconfig.so.1
ELF     7dadf000-7db57000       Deferred        libpcre.so.1
ELF     7db57000-7dc89000       Deferred        libglib-2.0.so.0
ELF     7dc89000-7dd2e000       Deferred        libharfbuzz.so.0
ELF     7dd2e000-7dd6c000       Deferred        libpng16.so.16
ELF     7dd6c000-7dd7d000       Deferred        libbz2.so.1.0
ELF     7dd7d000-7de4a000       Deferred        libfreetype.so.6
ELF     7de4a000-7deb8000       Deferred        libncursesw.so.6
ELF     7deb9000-7dec0000       Deferred        libxdmcp.so.6
ELF     7dec0000-7ded5000       Deferred        libxext.so.6
ELF     7def8000-7df0c000       Deferred        msimg32<elf>
  \-PE  7df00000-7df0c000       \               msimg32
ELF     7df0c000-7df37000       Deferred        msacm32<elf>
  \-PE  7df10000-7df37000       \               msacm32
ELF     7df37000-7dff0000       Deferred        winmm<elf>
  \-PE  7df40000-7dff0000       \               winmm
ELF     7dff0000-7e018000       Deferred        mpr<elf>
  \-PE  7e000000-7e018000       \               mpr
ELF     7e018000-7e031000       Deferred        libz.so.1
ELF     7e031000-7e036000       Deferred        libxau.so.6
ELF     7e036000-7e071000       Deferred        ws2_32<elf>
  \-PE  7e040000-7e071000       \               ws2_32
ELF     7e071000-7e0e9000       Deferred        wininet<elf>
  \-PE  7e080000-7e0e9000       \               wininet
ELF     7e0e9000-7e187000       Deferred        urlmon<elf>
  \-PE  7e0f0000-7e187000       \               urlmon
ELF     7e187000-7e2ba000       Deferred        oleaut32<elf>
  \-PE  7e1a0000-7e2ba000       \               oleaut32
ELF     7e2ba000-7e33b000       Deferred        rpcrt4<elf>
  \-PE  7e2d0000-7e33b000       \               rpcrt4
ELF     7e33b000-7e496000       Deferred        ole32<elf>
  \-PE  7e350000-7e496000       \               ole32
ELF     7e496000-7e50d000       Deferred        shlwapi<elf>
  \-PE  7e4a0000-7e50d000       \               shlwapi
ELF     7e50d000-7e760000       Dwarf           shell32<elf>
  \-PE  7e520000-7e760000       \               shell32
ELF     7e760000-7e941000       Dwarf           user32<elf>
  \-PE  7e770000-7e941000       \               user32
ELF     7e941000-7e9b9000       Deferred        advapi32<elf>
  \-PE  7e950000-7e9b9000       \               advapi32
ELF     7e9b9000-7eae6000       Deferred        gdi32<elf>
  \-PE  7e9d0000-7eae6000       \               gdi32
ELF     7eae6000-7eb9b000       Deferred        msvcrt<elf>
  \-PE  7eb00000-7eb9b000       \               msvcrt
ELF     7eecd000-7eee1000       Deferred        libnss_files.so.2
ELF     7eee1000-7eefc000       Deferred        libnsl.so.1
ELF     7eefc000-7efc0000       Deferred        libm.so.6
ELF     7efcf000-7efe6000       Deferred        olepro32<elf>
  \-PE  7efd0000-7efe6000       \               olepro32
ELF     7efe6000-7f000000       Deferred        version<elf>
  \-PE  7eff0000-7f000000       \               version
ELF     f7b01000-f7b0f000       Deferred        libnss_nis.so.2
ELF     f7b11000-f7b16000       Deferred        libdl.so.2
ELF     f7b16000-f7b20000       Deferred        libnss_compat.so.2
ELF     f7b56000-f7d29000       Deferred        libc.so.6
ELF     f7d29000-f7d48000       Deferred        libpthread.so.0
ELF     f7f01000-f7f28000       Deferred        ld-linux.so.2
Threads:
process  tid      prio (all id:s are in hex)
00000008 (D) Z:\home\d\Seafile\todolist\ToDoList.exe
        0000002d    0
        00000009    0 <==
0000000e services.exe
        00000022    0
        0000001d    0
        00000015    0
        00000014    0
        00000013    0
        00000010    0
        0000000f    0
00000011 winedevice.exe
        0000001c    0
        00000019    0
        00000018    0
        00000017    0
        00000016    0
        00000012    0
0000001a plugplay.exe
        0000001f    0
        0000001e    0
        0000001b    0
00000020 winedevice.exe
        00000029    0
        00000026    0
        00000025    0
        00000024    0
        00000023    0
        00000021    0
00000027 explorer.exe
        0000002c    0
        0000002b    0
        0000002a    0
        00000028    0
System information:
    Wine build: wine-3.1
    Platform: i386 (WOW64)
    Version: Windows 7
    Host system: Linux
    Host version: 4.14.20-2-MANJARO


Any idea what went wrong here?
AnswerRe: Linux instructions don't seem to work anymore (wine 3.1, manjaro) Pin
simplenuity16-Apr-18 6:18
simplenuity16-Apr-18 6:18 
GeneralRe: Linux instructions don't seem to work anymore (wine 3.1, manjaro) Pin
hamyio14-May-18 20:34
hamyio14-May-18 20:34 
GeneralRe: Linux instructions don't seem to work anymore (wine 3.1, manjaro) Pin
simplenuity17-May-18 23:40
simplenuity17-May-18 23:40 
GeneralRe: Linux instructions don't seem to work anymore (wine 3.1, manjaro) Pin
simplenuity22-Jul-18 21:06
simplenuity22-Jul-18 21:06 
BugRe: Linux instructions don't seem to work anymore (wine 3.1, manjaro) Pin
Bui The Hoa15-Aug-18 0:29
Bui The Hoa15-Aug-18 0:29 
QuestionBroken compatibility with the Android app Pin
Hugo González Castro21-Feb-18 9:50
professionalHugo González Castro21-Feb-18 9:50 
AnswerRe: Broken compatibility with the Android app Pin
.dan.g.11-Apr-18 17:41
professional.dan.g.11-Apr-18 17:41 
AnswerRe: Broken compatibility with the Android app Pin
idieh26-Jun-18 15:45
idieh26-Jun-18 15:45 
GeneralRe: Broken compatibility with the Android app Pin
Hugo González Castro29-Jul-22 17:56
professionalHugo González Castro29-Jul-22 17:56 
QuestionTDLTransEdit - Build Error Pin
kktt21-Feb-18 7:27
kktt21-Feb-18 7:27 
AnswerRe: TDLTransEdit - Build Error Pin
Member 260973720-Mar-18 7:03
Member 260973720-Mar-18 7:03 
BugSuggestion and some Bugs Pin
Member 136705929-Feb-18 10:49
Member 136705929-Feb-18 10:49 
QuestionGroup by Sort by Pin
Member 136705929-Feb-18 10:58
Member 136705929-Feb-18 10:58 
AnswerRe: Group by Sort by Pin
.dan.g.11-Apr-18 17:42
professional.dan.g.11-Apr-18 17:42 
Questionold hebrew tdl files are not supported ? Pin
liorshin13-Jan-18 3:31
liorshin13-Jan-18 3:31 
AnswerRe: old hebrew tdl files are not supported ? Pin
.dan.g.14-Jan-18 12:20
professional.dan.g.14-Jan-18 12:20 
BugINI overwritten after system update (Windows 10 x64) Pin
gizmecano9-Jan-18 21:41
gizmecano9-Jan-18 21:41 

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.