From: Damon Chander Subject: Re: PlgBlt() function Date: 20 Dec 1999 00:00:00 GMT Message-ID: <385E94BD.6783F3C7@cornell.edu> Content-Transfer-Encoding: 7bit References: <83kmuc$jhc5@forums.borland.com> X-Accept-Language: en Content-Type: text/plain; charset=us-ascii Organization: Another Netscape Collabra Server User Mime-Version: 1.0 Newsgroups: borland.public.cppbuilder.graphics Hi Yavuz, > I need an example of PlgBlt() function in code. Here's an example of using PlgBlt() to render angled text... POINT P[3]; P[0].x = 50; P[0].y = 10; P[1].x = 50; P[1].y = 10 + Label1->Width; P[2].x = 50 - Label1->Height; P[2].y = 10; PlgBlt(Canvas->Handle, P, Label1->Canvas->Handle, 0, 0, Label1->Width, Label1->Height, 0, 0, 0); Keep in mind that this function will not work in Win95. Good luck! Damon C.