Hi,
I get an EResNotFound exception while running my application.
constructor THintBulb.Create(AOwner: TComponent);
var
TmpBmp: TBitmap;
begin
inherited Create(AOwner);
Glyphs := TBitmap.Create;
Glyphs.LoadFromResourceName(hInstance, 'BULBGLYPHS256');
--> SetBounds(0, 0, Glyphs.Width div 4, Glyphs.Height);
TmpBmp := TBitmap.Create;
try
The error occurs in the --> so marked row above of unit oaStage.
I'm using Delphi 7, Office Assistent 3.23 and Win98(!)
The last one may be the real reason, because the error does not(!) occur on Win2000 or XP. But unfortunately Win98 is my target platform.
I hope anyone has a good idea
Thanks
Ingmar