Managing lo-dpi and hi-dpi resources in one app

When you are writing one application that can run at either lo-dpi or hi-dpi (as I hope you all are to take advantage of the new hardware that'll be coming out), there is the issues of how to manage the two sets of image resources.  One technique that works well is to put your image resources into two “satellite“ DLLs.  For example, you'd have myres96.dll and myres192.dll.  Then at install time, you simply delete the satellite DLL that doesn't correspond to the DPI of the device, and rename the other one.  For example, delete myres96.dll and rename myres192.dll to myres.dll. 

There is a sample in the Developer Resource Kit (called “ResDLL“) that illustrates how to do this.  Unfortunately, due to a change in the product code after the sample was written, there is a bug in the sample.  Here is the corrected version:

https://winisp.net/wmblog/resdll.zip

 

[Author: Jason Fuller]