Ok so far got the following:
picBall.Left = picBall.Left - 10
picBall.Top = picBall.Top - 5
If picBall.Left >= Me.Width Then
End If
The top two lines allow the picturebox to move but i now want the code for if the picturebox hits the side then goes another direction. The task is to make a breakout game. I have looked over the internet and all i can find is code from math nerds using x, y, z, a, b, c etc with numbers ranging form 1 to 99 so this is no good as i need to understand it. I have relevant knowledge but not game design.
Thanks