From: "Mike Shkolnik" Subject: Re: Bitmap to TGraphicField Date: 30 Apr 1999 00:00:00 GMT Message-ID: <7gbqam$ptk11@forums.borland.com> References: <01be9290$e04c5f40$9c0cd2cc@steve.san.rr.com> X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Organization: Another Netscape Collabra Server User Newsgroups: borland.public.delphi.graphics function GetBitmapFromField(field: TGraphicField): TBitmap; begin Result := TBitmap.Create; try Result.Assign(field); except Result := nil end end; -- With best regards, Mike Shkolnik. FIDO: 2:463/106.14 E-Mail: mshkolnik@rs-ukraine.kiev.ua mike@woccu.freenet.kiev.ua WEB: http://www.geocities.com/SiliconValley/Grid/3989 sdente1 пишет в сообщении <01be9290$e04c5f40$9c0cd2cc@steve.san.rr.com> ... >I have an application where I need to load an Bitmap stored in a >TGraphicField in a database to an in memory bitmap. How do I get the >bitmap out of the Tgraphic Field and assign it to the Bitmap? > >Any Help would be most appreciated. > >Steve