Search results for query: *

  1. M

    Ball Movements

    Sub EnemyMove(ByRef redball As PictureBox, ByVal intMoveX As Integer, ByVal intMoveY As Integer, ByVal intMultiplierX As Integer, ByVal intMultiplierY As Integer) Dim intCX As Integer = redball.Location.X Dim intCY As Integer = redball.Location.Y 'If intCX >= 707 Then...
  2. M

    Ball Movements

    Hey guys, Right now i'm working on a project trying to design a game in visual basic 2008 where you control a ball with your mouse and must dodge other circular balls that bounce around the screen. However, I am having a small problem with the ball interactions. However, this presents a small...
  3. M

    Graphics circles interact?

    Help This is one small portion of my coding. However, I am having a small problem with the ball interactions. As you can see from below, when the balls touch, the directions are simply reversed (through the use of the multiplier). However, this presents a small problem: when the balls touch for...
  4. M

    Graphics circles interact?

    Could you pe4rhaps give me a sample coding for how I could fix my project? I could not figure out how to use the e.Graphics class. Please help!
  5. M

    Graphics circles interact?

    thanks. Also right now, when my graphics move, they flicker. I am guessing this is because I am continually redrawing each circle to perpetuate the movement. Is there anyway to prevent this?
  6. M

    Graphics circles interact?

    Would this help me use the actual points on the outsize of the circle to interact with other balls?
  7. M

    Graphics circles interact?

    Thanks, This is my code so far, so what would i need to do, to do what you described. Any help would be appreciated! Public Class Form1 Structure Enemy Dim intX As Integer Dim intY As Integer Dim intChangeX As Integer Dim intChangeY As Integer Dim...
  8. M

    Graphics circles interact?

    Can you give me any more information on regional area? And also will these fit to the actual dimensions of the circle, not just the square boundries defined by the coordinates? Thanks
  9. M

    Graphics circles interact?

    Hey guys, Right now i'm working on a project trying to design a game in visual basic 2008 where you control a ball with your mouse and must dodge other circular balls that bounce around the screen. To accomplish this, I use the graphics generator to both generate my ball and the computer balls...
Back
Top