Recent content by HWwizzard

  1. H

    Dual Screen

    wow... sounds good... i think that i am definately going to look into it then... i have the video card to do it so i just have to look for a cheap flat screen, thanks for all the input
  2. H

    Best collision code in VB

    i have to repeat it for each moving object that i want to include... so that means copy and paste and then changing the variables to new object... i was wonder how to shorten it or make all of the moving objects follow the same code
  3. H

    Dual Screen

    Is it worth it? i have the video card to do but should i invest in the screen?
  4. H

    Best collision code in VB

    This is my current code: If pongBall.Bounds.Right >= paddleRight.Bounds.Left And pongBall.Bounds.Right < (paddleRight.Bounds.Left + 20) And pongBall.Bounds.Bottom > paddleRight.Bounds.Top And pongBall.Bounds.Top < paddleRight.Bounds.Bottom Then End if is there a better way to do it... this is...
Back
Top Bottom