65.9K
CodeProject is changing. Read more.
Home

Enhanced Windows List Developer Studio Addin

starIconstarIconstarIconstarIconemptyStarIcon

4.00/5 (1 vote)

Feb 14, 2001

viewsIcon

82991

downloadIcon

879

A smart replacement for standard Developer Studio' "Windows" dialog.

  • Download add-in DLL - 30 Kb
  • Download source files - 43 Kb
  • Sample Image

    Introduction

    Ever got frustrated with unpredictable behavior of thestandard "Windows" dialog box? EnhancedWindowList is an add-in that unobtrusively replaces standard "Windows" dialog and provides extended functionality. Its features include (see picture above):

    • Windows list may be sorted by document name, path, type and status.
    • Windows may be filtered by document type. For example, you can select to include into list only windows with *.C;*.CPP;*.CXX or *.TLI document.
    • Document path is always shown.
    • Size of the dialog window may be changed.
    • Current settings (types of windows to be included into list, sorting criteria, width of columns, sizes and position of the window) are saved and restored while dialog initialization.
    • This dialog is an actual replacement for standard dialog. You need not assign special key or toolbar button to invoke it. It will be always shown instead of standard dialog in spite of way it is invoked.

    Installation

    • Build the EnhancedWindowList.dsp project (or unzip downloaded EnhancedWindowList_demo.zip) and copy EnhancedWindowList.dll into Program Files\microsoft visual studio\common\msdev98\addins
    • Open Tools | Customize | Add-ins and Macro Files and tick "Inpek 7th world EnhancedWindowList".
    • Window | Windows... You should have replaced dialog.

    Limitations

    This add-in most likely would not work in non-english versions of DevStudio. It is due to way it is trying to determine that standard "Windows" dialog is initializing. See section "How it works" for more details.

    Context help is not implemented.

    I have only been able to test the add-in in VC6.0. It should work in 5.0, but if it doesn't you are welcome to fix it and I will incorporate any changes into the original.

    How it works

    On loading, the add-in registers a thread wide window procedure hook, which it uses to wait for WM_INITDIALOG on the "Windows" dialog. This technique have been first used by Simon Capewell in his excellent DevTrueColor add-in. We use the existence of a couple of buttons to verify the identity of the dialog. These buttons are Tile Horizontally and Tile Vertically. We check their IDs and texts to be sure that we are trying to intercept proper dialog box. The original dialog box is hidden, and the Enhanced Windows List dialog is created.

    Acknowledgements