Click here to Skip to main content
15,867,453 members
Articles / Desktop Programming / MFC
Article

Resource ID Organiser Add-In for Visual C++ 5.0/6.0/.NET

Rate me:
Please Sign up or sign in to vote.
4.98/5 (71 votes)
10 Jan 2005CPOL25 min read 528.2K   12.1K   201   158
An application/add-in to organise and renumber resource symbol IDs

Image 1

Image 2

(Throughout the article, click on the thumbnails to see larger versions)

The Trouble with Resources

A typical MFC or ATL project will contain at least one resource (.RC) file. Associated with each resource file is a symbol definition file - named "resource.h" by default, which contains #define directives for each of the symbols used in the project. Resource symbol definitions are created and modified by the Visual C++ Integrated Development Environment (IDE) when the resources for a project are edited.

Unfortunately, when it does so, it often gets it wrong. How often have you seen this message box whilst editing a dialog?

Image 3

This happens because two symbols have the same value. The problem is that the IDE is not particularly intelligent at allocating symbol ID values - and does not provide any facilities to unravel the mess that can easily arise as a result. The end result can easily be runtime behavior which is unpredictable to say the least.

An Answer to the Problem

The Resource ID Organiser (ResOrg for short) is an Add-in for Visual C++ 5.0, 6.0 and .NET designed to help simplify one of the most annoying - and unnecessary - chores of developing/maintaining Windows applications: maintaining resource symbol IDs.

ResOrg came about when I finally got sick of renumbering resources by hand or using Excel. I was working on a fairly large multi-project application (there were 40 modules at the time), and the difficulty of maintaining the number of resources within the workspace (over 3200!) convinced me to do something about it. Surprisingly, I couldn't find any similar tools to do the same thing, though there are a couple of macros which do something similar, albeit in a much more limited fashion. There are actually three incarnations of ResOrg: a standalone application, a Visual C++5.0/6.0 add-in, and a Visual C++ .NET add-in. Whilst the application is a conventional tabbed MDI application which edits resource symbol files directly, the add-ins integrate with Visual C++ and therefore have direct access to the workspace currently being edited.

ResOrg offers many features to help make managing resource symbol files easier, of which the following are a small selection:

  • Easy to interpret displays of the symbols within resource files.
  • Detection of out of range and conflicting symbols, both within and between resource symbol files.
  • Detection and correction of incorrect "Next Symbol" values.
  • Customizable HTML reports.
  • Manual and automated symbol renumbering.
  • Automatic exclusion of specified symbols (such as IDR_MAINFRAME) from renumbering operations.
  • Available as both a Visual C++ add-in and a standalone application.
  • Compatible with Visual C++ 5.0, 6.0, .NET 2002, 2003 and 2005.

Features

ResOrg allows the resources within a given workspace to be viewed or edited easily. For each project within the workspace, it will allow the symbol definition file (it doesn't have to be called resource.h) to be viewed or edited directly. If (as happens all too often) a symbol file has two or more symbols with the same value, they will be identified as conflicting symbols and displayed in red in the Symbols Display (see the first screenshot).

As you'd expect, individual symbols can be added, edited or removed (be careful with the latter!), but the real power of ResOrg is its ability to detect conflicts and intelligently renumber resource symbols.

Symbol Properties

The Symbol Properties dialog for a symbol whose value conflicts with another in the same resource symbol file will warn of the conflict, and provides a quick way to resolve it:

Image 4

The Symbol File Properties dialog allows statistics on the types of symbols in the symbol file to be viewed, and the Next Symbol values easily inspected and corrected:

Image 5

Image 6

HTML Reports

In large projects, the ability to identify problems can become critical. To that end, ResOrg provides facilities for generating HTML reports showing the symbols in a module - or just those which ResOrg has identified having a problem with their name or value:

Click on the image to view an example report

Automated Symbol Renumbering

If bulk changes are required, the Resource Symbol Renumbering Wizard will guide you through the process of renumbering all of the symbols in a given resource file (click on a thumbnail to see a larger image):

Image 8

Image 9

Image 10

Image 11

Image 12

Image 13

 

Image 14

 

When run, the wizard will identify suitable ranges for the symbols, and renumber them appropriately. Conflicting symbol values can be fixed quickly and easily by this process.

Unfortunately, renumbering some symbols can cause problems. Although the Symbol Renumbering Wizard allows individual symbols to be excluded from renumbering operations, it can be convenient to globally exclude specific symbols (such as IDR_MAINFRAME) from automatic renumbering across any file.

Exclusion of Symbols from Renumbering Operations

The "Fixed Symbols" page in the Options dialog provides the ability to do this:

Image 15

Any symbols listed in this page will not be automatically considered for renumbering by the Symbol Renumbering Wizard.

Additional Features in ResOrg.NET

ResOrg.NET is the ResOrg add-in for Visual C++ .NET. As well as a radically different IDE, Visual C++ .NET also introduces a new extensibility model, which allows add-ins much closer integration with the IDE than previous versions.

Unfortunately, this comes at the price of backward compatibility, since the new extensibility model is not backward compatible to previous versions of Visual C++.

For ResOrg, the new model and IDE adds a whole pile of possibilities. In fact, when I started seriously looking at how to approach the IDE, it took me about a month to settle upon a design which was both useful and sufficiently unambitious for my first stab at working with the new IDE!

Although ResOrg.NET does not include a standalone ResOrg app (although it's buildable from the source) and therefore does not have an "Add-In" tab in the Options dialog - it has exactly the same capabilities as ResOrg. It does however add one new bit of UI - a "Tool Window" which shows a summary of the properties of a selected resource symbol file:

Image 16

From the tool window, you can quickly see whether a symbol file has ID conflicts or if its "Next Symbol" values are in use...and view/modify its properties, or even launch the Symbol Renumbering Wizard. You can of course open the main ResOrg.NET UI to do more in-depth editing or multi-file conflict analysis.

IDE integration is likely to be further improved in subsequent versions, so watch this space!

Keeping Users Informed About Updates

ResOrg is a fairly complex product, and we try to produce updates as often as we reasonably can. However, releasing new versions is all very well, but how do you let those using the software know that it's been updated?

ResOrg includes several mechanisms to make this process easier (and reduce the number of versions we have to support!):

  1. Access to the ResOrg website from the Help menu within the application/add-in itself.
  2. A prompt (displayed the first time ResOrg is run after installation) asking the user whether they want to subscribe to the ResOrg Mailing List, upon which version updates are announced as soon as they become available:

Image 17

  1. An automated mechanism to check whether version updates are available. If so, a message is displayed giving details of the new version, and offering the option to visit the download page, from where you can download the new version if you choose:

Image 18

    Note that the update check does not send any information to the server - it merely reads a small text file to determine the latest released product version, and compares that against the version which is currently running. If the running version is older than that reported by the server, the details of the new version will be displayed in the prompt above.

    By default, this check occurs every 7 days. This interval can be changed (or version checking disabled entirely) from the "Updates" page of the Options dialog:

Image 19

Installation (Visual C++ 5.0/6.0 version)

ResOrg has its own installer, which will install the necessary files for you. Although it will not configure Visual Studio to load the add-in, the ResOrg application will optionally set up the registry entries needed to configure Visual Studio to do so. Since the installer launches the application by default anyway, this usually happens automatically.

If you need to configure it to do so manually, follow the following steps:

  1. Copy the ResOrg DLLs to the location you want them to run from (the default location for add-ins is C:\Program Files\Microsoft Visual Studio\Common\SharedIDE\Add-Ins).
  2. Start Visual C++ and select the Customize command on the Tools menu.
  3. Select the "Macros and Add-Ins" tab.
  4. If the entry "Resource ID Organiser" does not appear in the list control, press the Browse button to find the directory containing the DLLs, and select ResOrgAddIn.dll. Once you've done this, the entry should appear in the list control.
  5. Check the box next to the name of the add-in to load it. You should see the ResOrg toolbar, which you can dock anywhere convenient.

Installation (Visual C++ .NET version)

ResOrg.NET has its own (MSI based) installer, which will install the necessary files for you and configure Visual Studio to load the add-in. Once installed, the add-in can be loaded from the Add-In Manager on the Tools menu of the Visual Studio IDE.

When the add-in is loaded, it will re-create its commands and toolbar. You can dock the ResOrg toolbar anywhere convenient or hide it if you prefer.

Note: Unfortunately for add-in authors, the installation of add-ins under Visual Studio .NET is much more complex and fraught than it was under Visual Studio 6.0 * and can cause the IDE to fail to load in certain circumstances. To reduce the risk of this happening, it is highly recommended that you do not install an add-in whilst Visual Studio .NET is running.

* Early indications are that Visual Studio .NET 2005 (Whidbey) is slightly more tolerant than Visual Studio .NET 2002 and 2003, however.

Should you find that Visual Studio .NET refuses to load the add-in, the following sequence of operations should fix it:

  1. Shut down all copies of Visual Studio .NET.
  2. Uninstall the add-in using the Add/Remove Programs applet of Control Panel.
  3. Open the Registry Editor and remove all keys from HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\7.x \AddIns\ResOrgNETAddIn and HKEY_LOCAL_MACHINE\Software\Microsoft\VisualStudio\7.x \AddIns\ResOrgNETAddIn.
  4. Reinstall the add-in.
  5. Restart Visual Studio .NET. The add-in should load automatically, create its toolbar, and add its commands to the Tools menu.

If after doing the above, you still can't get the add-in to load correctly, please contact us and we'll try to investigate further.

System Dependencies (Visual C++ 5.0/6.0 version)

In order to function correctly, ResOrg may require several system DLLs to be installed:

  • ComCtl32.dll version 5.80
  • Shlwapi.dll version 4.71
  • Mfc42.dll version 6.00.8665.0
  • Msvcrt.dll version 6.00.8797.0

The installer includes appropriate copies of mfc42.dll and msvcrt.dll which are installed into the application folder.

ResOrg uses features introduced in the common controls updates shipped with Internet Explorer 5.0. Specifically, it requires version 5.80 of comctl32.dll to be installed. ResOrg will check the version of comctl32.dll upon start-up, and inform you if an update is necessary. You can download an installer (50comupd.exe) for the update from the Microsoft web site.

An appropriate version of Shlwapi.dll is included with Windows 98, NT 4.0 or later versions of Windows. If ResOrg is to be installed on a Windows 95 system which does not have this file, it can be installed by installing Internet Explorer 4 or later.

Source Code

The ResOrg source includes both the Visual C++ 6.0 workspace and Visual C++ .NET solution. The projects within the two workspaces (to use VC6 terminology) differ slightly, although the core components are common. The projects are:

ProjectDescriptionVC6.0?VC.NET?
BXFileDialogAn extension library hosting David Wulf's Office2K style file dialog class and an associated CDocManager class.

yes

no

CJLibraryThe CodeJock library (no longer freely available I'm afraid) provides the framework for the user interface, including support for the docking projects display and "cool" menus.

yes

yes

NGLibraryMy own extension library which provides general purpose classes, many of which are from either CodeGuru, CodeProject or MSJ, renamed with a "CNG" prefix for namespacing reasons

yes

yes

ResOrgAddInThe Visual C++ 5.0/6.0 add-in (an MFC regular DLL)

yes

no

ResOrgAppThe standalone ResOrg application

yes

yes

ResOrgCoreThe Core ResOrg module. Most of the useful and interesting stuff lives here!

yes

yes

ResOrgNETAddInThe Visual C++ .NET add-in (an MFC regular DLL)

no

yes

ResOrgNETAddInToolWindowsAn ActiveX control DLL used by the Visual C++ .NET add-in to host tool windows within the IDE

no

yes

The ResOrg add-ins are a little unusual in that they are implemented as an MDI application rather than the usual modal dialog or property sheet. To implement this, the mainframe contains a DoModal() method which uses CWnd::RunModalLoop() to create a modal mainframe which performs in a similar manner to its CDialog counterpart. When the add-in is invoked, its main window will appear (starting the modal loop), and the Visual C++ main window will be hidden. When the main window of the add-in is closed (ending the modal loop), Visual C++ will reappear.

Beyond that, their structure is that of a conventional MDI application, save for some additional plumbing to integrate a "workspace" docking window and David Wulf 's Office2K style File Dialogs (the latter in the VC 5.0/6.0 version only).

UI aside, the core of ResOrg is fairly simple: a class (CResourceSymbolManager) which manages a resource symbol file, and a class representing a resource symbol (CResourceSymbol). The add-ins themselves use a helper class (CVc6AutomationHelper or CVc7AutomationHelper as appropriate) to insulate itself from the COM interface of Visual Studio, since I found that doing so makes the code more readable.

Important Note

The Visual C++ 6.0 workspace has integrated Source Code Control enabled. To open the workspace without access to the SourceSafe database, please run the macro Toggle DevStudio SCC.vbs (in the source code ZIP file) to disable integrated source code control before attempting to load it. You will have to restart Visual Studio for the change to take effect.

Limitations

  • Since the Symbol Renumbering Wizard is implemented using the Wizard97 style, it does not display quite as intended on Windows 95 systems (the background of controls on the first and last page aren't transparent as they should be). Having said that, the display is quite readable and all features work as intended.
  • The source does not support Unicode. This is more down to the fact that I haven't got around to it than anything else...
  • The source can be compiled only with Visual C++ 6.0 and .NET 2003 - Visual C++ 5.0 and .NET 2002 are not supported. The former limitation is mainly because of the use of CPropertySheetEx and CPropertyPageEx, and the latter just because maintaining two sets of project files is bad enough, let alone three!
  • After the ResOrg app has been used to configure Visual C++ 5.0/6.0 to load the add-in, multiple toolbars may be visible in the Visual Studio IDE if a previous version was installed. Unloading the add-in and reloading it through Visual Studio cures the problem (or you can just delete the toolbars).
  • The ResOrg.NET tool window has an OLE "in-place editing" border around it when first created - this seems to be a result of it being an ActiveX control, but I haven't been able to nail it down yet.
  • The icon buttons in the ResOrg.NET tool window have tooltips, but for some reason they're not being displayed.

Future Work

As with any project of this nature, there are always a million things that could be done to make it that little bit more useful. Which ones actually get implemented is a matter of luck, judgment, peer-pressure and time!

Some of the major features I hope to add to future versions of ResOrg include:

  • Improved integration between ResOrg and Visual C++
  • Improved support for conflict checking throughout a workspace
  • Additional HTML reports

Credits

ResOrg in its current form would not have been possible with the existence of CodeProject, CodeGuru and MSJ. Code from these sources used by ResOrg includes (but isn't limited to):

Thanks are also due to Oz Solomonovich for his excellent WndTabs add-in, which gave me the inspiration to get started on this in the first place...

A Word of Caution

Please exercise caution when renumbering symbols using ResOrg. Under certain circumstances, doing so can cause problems, which is the last thing I want to happen.

The most significant issues I'm aware of are:

  • If you have a dialog template which contains a bitmap resource, the Visual C++ Resource Editor stores the ID of the bitmap as a literal value, rather than an ID. Changing the value of the bitmap's ID will break this association, and you will have to re-enter the ID in the dialog editor or the bitmap will not be displayed.
  • The icon shown by the Windows shell for an application is that with the lowest ID. If you renumber the icons, this may no longer be the case, and the wrong icon may be shown.
  • Visual C++ will not automatically rebuild implementation files as a result of resource symbol changes, since doing so would cause all dependent files (and there could be a lot of them) to be rebuilt every time a resource symbol was added or changed.

    Unfortunately, when you renumber symbols, this is exactly what you want to happen - if you don't rebuild the right files, all sorts of strange behavior can result! If in doubt, clean the affected projects before attempting to rebuild them.

    MFC Technical Note TN035: Using Multiple Resource Files and Header Files with Visual C++ - discusses this subject.

Since ResOrg allows you to specify which symbols you want to renumber (and how to do it), you can exclude symbols from the renumbering process if changing their values is likely to cause problems.

A good version control system is invaluable here, since it provides a quick way to review (and throw away if necessary) any changes made. If you haven't got access to one, please back up your resource and resource symbol files before attempting to renumber symbols (WinDiff can be used to review the changes if necessary, but it's a poor substitute I'm afraid).

Ultimately, I hope to add the capability to properly handle resource files (a subject for another article, I think...). Once this is in place, ResOrg will be able to circumvent some of these issues.

Version History

6th January, 2005

Minor update to the article to add details of the automated version checking included within ResOrg, and add troubleshooting information for Visual Studio .NET add-in installation. The code and binaries are unaffected by this update.

31st December, 2004

ResOrg version 1.6.1 released to CodeProject. This release adds support for Visual C++ .NET 2005.

Symbols and Symbol Files:

  • Added support for toolbar (IDT_xxx) and accelerator (IDK_xxx) symbols.
  • Added support for detection of out of range symbols, based on symbol type and the defined base values for the associated file.
  • Added support for the "_APS_NO_MFC" define sometimes found in non-MFC projects.

Options:

  • Added support for "Fixed" symbols. Such symbols (e.g., IDR_MAINFRAME) will be excluded from renumbering operations, by default).
  • Added an "Autosave Symbol File Configuration" option to the "Symbols" page of the Options dialog. When active, an XML file containing the symbol file configuration (Base Values etc.) is automatically written when a file is saved or the Base Values are changed.
  • Added a "Check for out of range symbols" control to the "Symbols" page of the Options dialog. A corresponding control has also been added to the "General" page of the Symbol File Properties dialog.

Displays:

  • Added "Next Problem" and "Previous Problem" commands to Symbols Displays.
  • The "Properties" command on the main toolbar now displays the properties for the current file if the properties for a symbol cannot be displayed.
  • Added dynamic splitter windows to Symbols Displays.
  • Double clicking status bar panes now does something vaguely sensible.
  • Added a "File Properties" button to the "General" page of the Symbol File Properties dialog to provide access to the general properties for the file.

Reports:

  • Revised the layout of the Report dialog. It is now resizable, and the stylesheet pathname edit control is now a combo box showing all recently used report templates.
  • Added Problem Symbol Report.
  • Added table sorting capability to HTML reports (courtesy of Mike Hall - www.brainjar.com).
  • Various minor layout improvements.

Miscellaneous:

  • Added support for Visual Studio .NET 2005.
  • Updated the "author" image in the About box and rebranded as a Riverblade product.
  • Toolbar buttons in the ResOrg.NET add-in are now stored in a satellite DLL and have transparent backgrounds.
  • Added an icon to the tool window displayed by the ResOrg.NET add in.

4th July, 2003

ResOrg version 1.5.2 released to CodeProject. This release adds support for Visual C++ .NET 2003.

New Features:

  • Added support for multi-file conflict checking, through a new "Open Together" command on the context menu of the Workspace Display. The Symbol File Properties dialog also displays an additional tab (named "Files") when such a display is opened.
  • Added conflict filtering to the Symbols Display (multi-file Symbols Displays can be set to be filtered by default through a new setting in the Options dialog).
  • Added support for XML export and HTML reports. A predefined or user defined XSL stylesheet is used to generate HTML reports, but you can also supply your own if you're feeling adventurous. I'll probably add more stylesheets in the future.
  • The Symbol File Properties dialog has gained a "Base Values" page, and is now resizable.

Bug Fixes:

  • Improved support for symbol base values (these are now the responsibility of the appropriate CResourceSymbolManager object, and calculated when the symbol file is loaded).
  • Website/email addresses are now obtained from the registry rather than hard-coded (I learnt the importance of this one the hard way when I had to move the ResOrg website at the end of 2002!).
  • Removed the TCS_SCROLLOPPOSITE style from the MDI tab control to prevent tabs jumping to the opposite side of the window.
  • Corrected bugs in the renumbering process which could cause invalid values to be assigned under certain circumstances.
  • Various modifications for better compatibility with Visual C++ .NET. In particular, a couple of bugs in the ResOrg.NET tool window have been fixed, and the ResOrg.NET installer also now forces the add-in's commands to be recreated, which will hopefully make the installation process much less problematical.

Other Changes:

  • Upgraded the ResOrg.NET solution to Visual C++ .NET 2003.
  • The "Fix Conflicts" command now uses the base values for that symbol type defined in the "Base Values" page of the Symbol File Properties dialog.
  • Added a manifest to the ResOrg application to allow support for visual styles on WinXP systems.
  • Improved version checking code. It will now tell you if your version is newer than that on the website, which is proving useful to me while testing new versions!
  • Removed the QHTM module (it's just more than I need for ResOrg).
  • Corrected/improved some string table prompts.
  • Added support for native (ComCtl v6) sort images in header controls.
  • Updated website address on file banners.
  • Changed name/email address throughout the code. The act that was "Andy Metcalfe" is now history.
  • Updated the splash screen and About box. Added a fade effect when the splash screen closes. Also added a mug shot to the About box (just call me a vain cow, OK?).
  • Started DOxygen'ing the source code.

12th August, 2002

ResOrg version 1.4.5 released to CodeProject. This release marks the debut of ResOrg.NET (thanks to Nick Hodapp of Microsoft for making this possible).

New Features:

  • Added "Use Office XP style menus" option to allow the user to specify whether they want the old or new style menus.
  • ResOrg now uses the VS.NET visual style for file dialogs used when running on Windows XP systems.
  • The About box is now expandable - it now includes a list of the loaded modules.
  • The splash screen and About box now display the target environment (Visual C++ 5.0/6.0 or Visual C++ .NET).

Bug Fixes:

  • Resource Symbol Files are now marked as modified if multiply selected symbols are deleted in the Symbols Display.
  • Improved column auto-sizing in the Symbols Display.
  • Corrected a bug in the calculation of "Next Symbol" values.
  • The "Back" button on the "Completion" page of the Symbol Renumbering Wizard now correctly opens the "New Symbol Values" page, rather than the "Base Values" page as before.
  • Corrected the control layout in the "General" property page for resource symbol files.

Other Changes:

  • The CResourceSymbolBuffer class has now been renamed to CResourceSymbolManager, and the header file parsing/writing code within it moved to a new class (CResourceSymbolFileBuffer). This is more to make the code cleaner than anything else.
  • Lots of modifications for compatibility with Visual C++ .NET.
  • Improved parsing of VC.NET project files (.vcproj) to make the parser more robust.
  • Renamed the ResOrgUtils module to ResOrgCore.
  • Renamed CWorkspaceHelper to CVc6AutomationHelper, and moved it to the ResOrgCore module. Added a corresponding CVc7AutomationHelper class in the ResOrg.NET version.
  • Revised the way symbol value conflicts are stored, to remove a two-way code dependency which caused big problems in Visual C++ .NET.

7th May, 2002

ResOrg version 1.4.4 released to CodeProject.

New Features:

  • Traded in the old ResOrg logo for a much improved one by Stefan Pedersen. The splash screen, About box and Symbol Renumbering Wizard have all been updated to use the new logo.
  • Replaced the File Properties dialog with a Property Sheet.
  • Integrated a new "this is what the new values will be" page to the Symbol Renumbering Wizard.
  • Double clicking on a symbol in the Select Symbols Page of the Symbol Renumbering Wizard now includes/excludes it from the renumbering process.
  • Added an "Original ID" column to the Symbols Display.
  • Added "Fix Conflicts" and "Restore Original Value" commands to the context menu of the Symbols Display.
  • Added a "Properties" command (which opens the File Properties dialog for the corresponding resource symbol file) to the context menu of the Workspace Display.
  • Added a new pane to the status bar (an indicator to let you know if the Next Symbol values are in use) and removed the duff ones (NUM LOCK etc.).
  • Added a new option to determine whether development versions should be included when checking for updates.
  • Added the following options: Prompt the user after loading a file if its "Next Symbol" values are in use; Automatically correct "Next Symbol" values when necessary; Show text on toolbars; Automatically reload modified files and Hide the workspace display when not in use.
  • Added support for VC7 workspaces and project files (though the ResOrg source code doesn't compile under VC7 yet).
  • The workspace now uses the "flat" look.
  • Upgraded the CodeJock Library to BCMenu 3.03 (WinXP style and lots of bug fixes).

Bug fixes:

  • Changed the formatting of symbol <cvde>#define directives written to resource symbol files to be a closer match to the Visual C++ 6.0 format (better for file differencing).
  • Corrected the order in which the "Next Symbol" values are written to resource symbol files.
  • The _APS_3D_CONTROLS value is now written to a resource symbol file only if its value is 1 (i.e. TRUE).
  • CResOrgVersionCheck::DoThreadFunc() now resets m_pThread and m_hThread to NULL after calling OnDownloadCompleted() - this prevents a continuable exception when running under the debugger on Win2000 systems.
  • Fixed a bug in the calculation of Next Symbol values after symbol renumbering.
  • Added some #defines from AfxPriv.h to CJDockContext.cpp in the CodeJock library (the August 2001 Platform SDK broke it).
  • Got rid of compiler warnings. ResOrg modules are now compiled at level 4 with the "warnings as errors" option enabled.
  • CRenumWizSelectSymbolsPage::OnWizardBack() now re-enables the "Next" button just in case it was disabled (thanks to Arnt Witteveen for the bug report).
  • Corrected the background colors in the Status Bar.
  • Various other minor bug fixes.

24th July, 2001

ResOrg version 1.3.10 released:

  • Fixed symbol ID conflicts in ResOrgUtils_Res.h.
  • The Symbols Display list control is now created with the LVS_SHOWSELALWAYS style so that the selection is retained when it loses the focus.
  • Corrected the Mailing List prompt to point at the new mailing list.
  • ResOrg now terminates lines with carriage return-linefeed pairs instead of single linefeed characters.
  • Reduced dependencies on Shlwapi.dll.

21st July, 2001

Removed shlwapi.dll from the installer (it was causing problems on some NT 4.0 systems), and added a ZIP file containing just the binaries. No code changes (yet...).

15th July, 2001

ResOrg version 1.3.9 first released to CodeProject.

Finally...

I'd like to take this opportunity to thank all of the developers who have taken the time to either give me feedback or participate in testing, including: Beth Mackenzie (my partner in crimecoding!), Leo Davidson, Gavin Jerman, Penina Weiss, Oz Solomonovich, Jean Palmer, Mustafa Demirhan, Andrew Gebbie, Don Sanders, Bassam Abdul-Baki, Dave Wolfe, John Williams, Glynn Morgan, Andy Greenwood, Martin Palmer, David Wulff and Nick Hodapp (my apologies if I've left anyone out!).

The latest information on ResOrg can be found on the ResOrg website.

Finally, although not a part of the product itself, the Riverblade Developers' Blog (Products, the Universe and Everything) is another way to find out about the current plans for ResOrg, and discuss forthcoming or requested features. (An RSS feed is also included for convenience. If you have any comments, suggestions, bug reports etc., please feel free to contact us, or record your suggestion either here or in a comment on an appropriate post in the blog.)

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Founder Riverblade Limited
United Kingdom United Kingdom
I haven't always written software for a living. When I graduated from Surrey University in 1989, it was with an Electronic Engineering degree, but unfortunately that never really gave me the opportunity to do anything particularly interesting (with the possible exception of designing Darth Vader's Codpiece * for the UK Army in 1990).
    * Also known as the Standard Army Bootswitch. But that's another story...
Since the opportunity arose to lead a software team developing C++ software for Avionic Test Systems in 1996, I've not looked back. More recently I've been involved in the development of subsea acoustic navigation systems, digital TV broadcast systems, port security/tracking systems, and most recently software development tools with my own company, Riverblade Ltd.

One of my personal specialities is IDE plug-in development. ResOrg was my first attempt at a plug-in, but my day to day work is with Visual Lint, an interactive code analysis tool environment with works within the Visual Studio and Eclipse IDEs or on build servers.

I love lots of things, but particularly music, photography and anything connected with history or engineering. I despise ignorant, intolerant and obstructive people - and it shows...I can be a bolshy cow if you wind me up the wrong way...Laugh | :laugh:

I'm currently based 15 minutes walk from the beach in Bournemouth on the south coast of England. Since I moved here I've grown to love the place - even if it is full of grockles in Summer!

Comments and Discussions

 
GeneralExcellent tools Pin
Haldo7929-Aug-14 0:02
Haldo7929-Aug-14 0:02 
GeneralMy vote of 5 Pin
calmman.yang14-Jun-13 18:28
calmman.yang14-Jun-13 18:28 
GeneralMy vote of 5 Pin
Leonid Osmolovski9-Oct-11 10:44
Leonid Osmolovski9-Oct-11 10:44 
GeneralMy vote of 5 Pin
Bharat Mallapur15-Jun-11 19:47
Bharat Mallapur15-Jun-11 19:47 
Generalvery great, i was searching for EXACTLY THIS long time !! Pin
JustDownload218-Feb-11 11:43
JustDownload218-Feb-11 11:43 
GeneralResource Cleanup Pin
Ștefan-Mihai MOGA3-Dec-10 12:35
professionalȘtefan-Mihai MOGA3-Dec-10 12:35 
QuestionWhat is "Value out of range" Pin
yccheok6-Oct-10 19:26
yccheok6-Oct-10 19:26 
AnswerRe: What is "Value out of range" Pin
Anna-Jayne Metcalfe6-Oct-10 22:04
Anna-Jayne Metcalfe6-Oct-10 22:04 
QuestionPossible to use it across 2 different projects (EXE and DLL) ? Pin
yccheok6-Oct-10 15:59
yccheok6-Oct-10 15:59 
AnswerRe: Possible to use it across 2 different projects (EXE and DLL) ? Pin
Anna-Jayne Metcalfe6-Oct-10 22:00
Anna-Jayne Metcalfe6-Oct-10 22:00 
QuestionHow to build in VC6.0? Pin
e_ilite10-Jan-10 15:48
e_ilite10-Jan-10 15:48 
AnswerRe: How to build in VC6.0? Pin
Anna-Jayne Metcalfe10-Jan-10 23:28
Anna-Jayne Metcalfe10-Jan-10 23:28 
GeneralRe: How to build in VC6.0? Pin
e_ilite11-Jan-10 13:46
e_ilite11-Jan-10 13:46 
GeneralRe: How to build in VC6.0? Pin
Anna-Jayne Metcalfe11-Jan-10 20:46
Anna-Jayne Metcalfe11-Jan-10 20:46 
GeneralRe: How to build in VC6.0? Pin
e_ilite11-Jan-10 20:49
e_ilite11-Jan-10 20:49 
GeneralRe: How to build in VC6.0? Pin
Anna-Jayne Metcalfe11-Jan-10 21:50
Anna-Jayne Metcalfe11-Jan-10 21:50 
GeneralNew version Pin
Hans Dietrich28-Nov-09 16:25
mentorHans Dietrich28-Nov-09 16:25 
GeneralRe: New version Pin
Anna-Jayne Metcalfe28-Nov-09 21:47
Anna-Jayne Metcalfe28-Nov-09 21:47 
GeneralRe: New version Pin
Hans Dietrich28-Nov-09 22:10
mentorHans Dietrich28-Nov-09 22:10 
GeneralRe: New version Pin
Anna-Jayne Metcalfe28-Nov-09 23:00
Anna-Jayne Metcalfe28-Nov-09 23:00 
GeneralFile format after renumbering Pin
Mizan Rahman18-Aug-09 1:13
Mizan Rahman18-Aug-09 1:13 
GeneralRe: File format after renumbering Pin
Anna-Jayne Metcalfe20-Aug-09 23:00
Anna-Jayne Metcalfe20-Aug-09 23:00 
GeneralNew feature suggestions Pin
Mizan Rahman3-Jul-09 2:48
Mizan Rahman3-Jul-09 2:48 
GeneralRe: New feature suggestions Pin
Anna-Jayne Metcalfe3-Jul-09 8:27
Anna-Jayne Metcalfe3-Jul-09 8:27 
GeneralCrashes Pin
andwan024-Mar-09 8:10
andwan024-Mar-09 8:10 

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.