Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_vb thread: Need a win32 Guru to Fix the wierd Grafix Problem


Message #1 by "Simon Edwards" <sedwards@f...> on Thu, 7 Dec 2000 10:07:43 -0000
Fixed the damn thing


the following Lines...

 Create a bitmap for each DC.  DCs are required
> ' for a number of GDI functions.
> '
> ' Monochrome bitmaps.
> '
> lBmAndBack = CreateBitmap(x, y, 1&, 1&, 0&)
> lBmAndObject = CreateBitmap(x, y, 1&, 1&, 0&)
> '
> ' Color Compatible bitmaps.


should read...

 Create a bitmap for each DC.  DCs are required
> ' for a number of GDI functions.
> '
> ' Monochrome bitmaps.
> '
> lBmAndBack = CreateBitmap(x, y, 1&, 1&, byval 0&)
> lBmAndObject = CreateBitmap(x, y, 1&, 1&, byval 0&)
> '
> ' Color Compatible bitmaps.



  Return to Index