vote up 1 vote down star

I am trying to extract a gif image embedded as a resource within my ISAPI dll using WebBroker technology. The resource has been added to the DLL using the following RC code:

LOGO_GIF RCDATA logo.gif

Using resource explorer I verified it is in the DLL properly.

using the following code always throws an exception, "resource not found" (using Delphi 2009)

var
  rc : tResourceStream;
begin
  rc := tResourceStream.Create(hInstance,'LOGO_GIF','RCDATA');
end;
flag

4 Answers

vote up 2 vote down check

RCDATA is a pre-defined resource type with an integer ID of RT_RCDATA (declared in Types unit).

Try accessing it this way:

rc := tResourceStream.Create(hInstance,'LOGO_GIF', MakeIntResource(RT_RCDATA));
link|flag
you don't need the MakeIntResource at all – Jeroen Pluimers Jul 22 at 12:39
vote up 1 vote down

If I remember correctly you are actually dealing with an instance of the web server, not the dll. I don't remember the work around though, but that is the explanation for why that doesn't work. Hopefully someone else can build off of this.

link|flag
vote up 1 vote down

Either use your own arbitrary resource type like GIF:

LOGO_GIF GIF logo.gif

then use

rc := tResourceStream.Create(hInstance,'LOGO_GIF','GIF');

or simply use

rc := tResourceStream.Create(hInstance,'LOGO_GIF', RT_RCDATA);
link|flag
vote up 1 vote down

or simply use

rc := tResourceStream.Create(hInstance,'LOGO_GIF', RT__RCDATA);

This. Works like a charm.

D2009 here, too, had the same issue, but was trying to get TStringsList out of the DLL.

Thanks.

link|flag

Your Answer

Get an OpenID
or

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