In Delphi 7, an image editor program is included, which can read and write .dcr files, which are merely binary resource files (.res files) with a different extension, which by convention indicates that the .dcr file contains a compiled resource with named bitmap resources that have names corresponding to your component names (a bitmap resource named TMYCOMPONENT for a component named TMyComponent). These bitmaps are where the "icons" used to put an icon on the delphi component palette, and on your form or data-module when you drop a non-visual component on it, come from.

Fast forward 10 years to Delphi XE, and I am trying to make component icons using a bitmap file, and an RC file, and have that build to a .DCR file, as part of the Delphi IDE.

It should be simply a matter of adding an .Rc file and a declaration like this in the .dpk (package source) file, like this:

{$R mypackageicons.rc mypackageicons.dcr}

A sample .rc file containing a component icon:

 // COMPONENT ICON RESOURCES
 TMYCOMPONENT BMP "TMYCOMPONENT.BMP"

However I can not get this to work. It seems that you get some bizarre RLINK32 errors, and IDE crashes in borlandmm.dll, when I try it:

[DCC Error] E2161 Error: RLINK32: Unsupported 16bit resource in file "C:\temp\compicon\COMPONENTICONS.rc"
[DCC Fatal Error] F2084 Internal Error: AV21515155-W06000D07-1

The bitmap file in question is a simple 256 color bmp file size 24x24 pixels, and I have also tried 16 color bitmaps, with no luck. It seems to me that the ImageEdit program is the only way that I know of that I can use to create Delphi component icons.

What am I missing out on?

Update: The external tools are a nice solution for people who don't have access to the Delphi 7 image editor, and may in fact be superior, but I would prefer to do this using only what ships with Delphi, because it seems that it should be possible using just one {$R} declaration, a text file, and a bmp file made with paintbrush. Surely they didn't omit to make a way to make component icons, with this great big 1.5 gigabyte developer tool! .. update2: And there is a way; Rudy V. found it.

link|improve this question

2  
Component resource files need to contain 24x24 pixel, 16 color VGA images. You don't have to give it the dcr extension; just add the`{$R YourRes.res}` to the package source file containing the Register procedure. – Ken White Aug 9 '11 at 18:08
1  
I believe the resource should be of type 'BITMAP', not 'BMP'. – Sertac Akyuz Aug 9 '11 at 18:48
1  
I tried that too. What's odd is that RES (DCR) files created with D7 Image editor create BMP entries, not BITMAP entries. – Warren P Aug 9 '11 at 18:51
2  
I'm sure I've included .dcr files which did not have the same name as the unit that does registration. I'm sure I just included then in the dpk file. – David Heffernan Aug 9 '11 at 19:04
1  
Compile with >brcc32 mypackageicons.rc -fomypackageicons.dcr, and include with {$R mypackageicons.dcr}. At least all will be with included tools. – Sertac Akyuz Aug 9 '11 at 19:24
show 18 more comments
feedback

3 Answers

up vote 8 down vote accepted

I have used and had great success with:

Update

I just tried the following, in XE, and was successful.

  • I created a new component, TNewAnimate, in NewAnimates.pas.
  • I added TNewAnimate.pas to dclusr.dpk.
  • I added a bitmap (called TMRUComboBox.bmp, I just had that around anyway) using the Project->Resources and Images... dialog to the .dpk and gave it the name TNEWANIMATE.
  • I re-installed dclusr.dpk.

The source file for dclusr.pdk got a new entry {$R *.dres} (note the extension). I could see the TNewAnimate in the Samples palette with the glyph in TMRUComboBox.bmp.

I located dclusr.dres in the same directory as dclusr.dpk (which is normally under C:\Program Files, but not in my setup). I tried to open it with XN Resource Editor, but that refused to open it with a cryptic error message. It is not a normal .res file, it seems.

enter image description here

link|improve this answer
What formats are admissible for component icons? – David Heffernan Aug 9 '11 at 17:35
Do you mean in Delphi or in the editors? I must admit I haven't done any editing for a while anymore. I do fondly remember those editors. AFAIK, up to 256x256 icons with 32k colours are supported by both editors, but I could be wrong. Colin's as a little older, so it might not support all newer formats anymore. – Rudy Velthuis Aug 9 '11 at 17:46
I mean in Delphi. Not much use creating pretty icons that Delphi can't load. – David Heffernan Aug 9 '11 at 17:49
About the icons recogmized by Delphi: I don't know. I guess all kinds, these days. Hmmm... would be a nice question. <g> – Rudy Velthuis Aug 9 '11 at 17:50
About Update: Nice find. But it seems there are some weird bugs in this new feature. Among them it seems easy to get the {$R *.dres} directive multiple times in your project source (.dpk) file, and they have to be removed in order to not crash. However, it works, I just did it, and it works fine, and unlike {$R item1 item2} never causes access violations. – Warren P Aug 9 '11 at 20:45
show 2 more comments
feedback

Try Resource Editor. A nice replacement for old Image Editor.

link|improve this answer
Very nice tool and highly recommended, however I was more interested in how the low level text/compilation features should work. – Warren P Aug 9 '11 at 20:49
Is it open-source? – Premature Optimization Aug 10 '11 at 21:15
@Downvoter: Did you follow the link? From the opening section: "For now the resource editor is freeware. I have not decided what to do with it in the future. I may decide to turn it into a commercial product if I can find anyone willing to market it (I’m no good at that myself), I may decide to open source it or I may grow tired of it and just burn the disks - so to speak." It's at the top of the first page, last paragraph before the "Overview" heading. – Ken White Aug 11 '11 at 0:21
@KenWhite using @Downvoter sends notice to the actual downvoter? – PresleyDias May 9 at 13:09
@PresleyDias, no. The user name of "Premature Optimization" at the time this was posted was "Downvoter Step Into The Light" or something like that; he's changed his name several times (and it's different now, in fact). – Ken White May 9 at 13:50
feedback

First add 'mypackageicons.rc' file to the project, this produces 'mypackageicons.res' at compile time (see related SO answer to the question "Including resource file in a project by .RC file rather than .RES file").

Also include {$R mypackageicons.res mypackageicons.dcr} to the component unit (or to the .dpk). This does not produce a '.dcr file', but sets the icon for the component.


Note that my test with a 'BMP' resource failed. I used 'BITMAP' as resource type.

link|improve this answer
This worked for me, except that it also seems to sometimes cause access violations. – Warren P Aug 9 '11 at 20:48
@Warren - AFAIU there are alternatives as to how to include resources with D2009 and up. Perhaps not all of them get the same attention, who knows.. – Sertac Akyuz Aug 9 '11 at 21:13
I think that since this is supposed to work since 2007, it should get fixed in XE - I'll log it in QC. – Warren P Aug 9 '11 at 22:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.