CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 44

Threaded View

  1. #21
    Join Date
    Jun 2002
    Location
    West Virginia
    Posts
    131

    Re: Need help with a whole bunch of things

    The flickering is caused by painting to the screen while the screen is being refreshed. So you need to paint the picture very fast. The fastest way is using API BitBlt. Check out this tutorial at Lucky's Gaming Site.
    http://www.rookscape.com/vbgaming/GBeebe/bitblt.php
    While there check out their tutorials on games.
    also here
    http://www.vbexplorer.com/VBExplorer/game_tutorials.asp
    they also have a BitBlt tutorial.
    BitBlt is about 10 times faster than PaintPicture although they are both built on the same API.
    Wayne
    Last edited by WayneS; October 29th, 2004 at 04:06 AM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured