Re: drawbitmap ??
- Posted by "Cuny, David" <David.Cuny at DSS.CA.GOV> Jul 26, 1999
- 467 views
Bernie Ryan wrote: > drawBitmap expects a bitmap handle as a parameter. > I have bitmap in my current directory called > MYBITMAP.BMP How do I use win32lib to get its handle? Load the bitmap with: handle = loadBitmapFromFile( "MyBitmap.bmp" ) Display it in MyWindow at {10,20) with: drawBitmap( MyWindow, handle, 10, 20 ) -- David Cuny