Page 1 of 1

THISSSSSSSSSSSSSSSSS!

Posted: Mon May 03, 2010 5:29 pm
by NeedHelp
How can i make it so picturebox1 can't touch picturebox2 [making a game]

Re: THISSSSSSSSSSSSSSSSS!

Posted: Mon May 03, 2010 8:35 pm
by mandai
Try
Code: Select all
If PictureBox1.Bounds.IntersectsWith(PictureBox2.Bounds) Then
   'don't let picturebox1 move any more.
End If

Re: THISSSSSSSSSSSSSSSSS!

Posted: Mon May 03, 2010 9:11 pm
by NeedHelp
nvm worked