hey guys, guess what, i've got another problem for you!!
i want it so that when image1 touches image2, a "crashed message" appears
this dosen't work:
(im using VB 6 this time BTW)
thanks
i want it so that when image1 touches image2, a "crashed message" appears
this dosen't work:
Code:
private sub form1_keypress (keyascii as integer) if image1.top <= image2.top + 105 and image1.top >= image2.top - 105 then msgbox ("crashed") endif
thanks
Comment