|
-
Jul 18th, 2000, 02:54 AM
#1
Thread Starter
New Member
Is this a flaw or what?
I created a crude game in VB 5.0 Enterprise, and encountered once major (and to my knowledge unavoidable) flaw. I move a gif image around the screen by manipulating the image.Left and image.Top properties, yet whenever the image moves it begins to flash, even more so if the image is a transparent gif. Is there any way to prevent/fix this?
[Edited by SOUL-JAH on 07-18-2000 at 05:36 AM]
-
Jul 18th, 2000, 03:48 AM
#2
Games, games ...
Serious, I don't know. But if you finish your game, pl. send me a copy for review. I enjoy gaming sooooooo much!
-
Jul 18th, 2000, 03:53 AM
#3
transcendental analytic
For hiding and showing cursor
Declaration:
Code:
Declare Function ShowCursor Lib "user32" (ByVal bShow As Long) As Long
Usage:
Code:
ShowCursor 0 'Hides cursor
ShowCursor 1 'Shows cursor
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
-
Jul 18th, 2000, 04:02 AM
#4
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|