The  following   code   snippet  is   failing  when  I use
local   variable   for  Pen   and  Graphics   instead  of
dynamically allocating   them. Can  someone  help me  out with a reason?



   StartDoc(dlg.hDC, &di); 
   StartPage(dlg.hDC); 
   GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, NULL);
   Pen      *pen = new Pen(Color(255, 0, 0, 255));
   Graphics *graphics = new Graphics(dlg.hDC);
   graphics->DrawLine(pen, 0, 0, 800, 200);
   delete pen;
   delete graphics;


**************************Disclaimer************************************

Information contained in this E-MAIL being proprietary to Wipro Limited
is 'privileged' and 'confidential' and intended for use only by the
individual or entity to which it is addressed. You are notified that any
use, copying or dissemination of the information contained in the E-MAIL
in any manner whatsoever is strictly prohibited.


 ********************************************************************

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

Reply via email to