The collision is being detected, you're just not acting on it, see:

VB Code:
  1. If ball.Location.X < playerPaddle.Right And ball.Location.X > playerPaddle.Left Then
  2.     'Checks that the balls Y position is within the top/bottom edges of the paddle
  3.     If ball.Location.Y < playerPaddle.Bottom And ball.Location.Y > playerPaddle.Top Then
  4.         'A collision has occured... but we're not doing anything here!
  5.  
  6.         'TODO: Need to add some code to run for when the playerPaddle interacts with the ball
  7.     End If
  8. End If

It looks like you missed step 7.