iki tekerlekli bi araba duşunun viraj donme animasyonu gibi ikisi aynı anda donmeli.
Yardımcı olabilecek arkadaşlara şimdiden teşekkurler
sadece hareket icin şunu yazdım ama calışmadı
Kod:
Private Sub PictureBox1_Paint(sender As Object, e As PaintEventArgs) Handles PictureBox1.Paint solx1 = 5 soly1 = 5 solen = 10 solboy = 15 e.Graphics.DrawRectangle(kalem, solx1, soly1, solen, solboy) sagx1 = 20 sagy1 = 5 sagen = 10 sagboy = 15 e.Graphics.DrawRectangle(kalem2, sagx1, sagy1, sagen, sagboy) End Sub Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick sagx1 = sagx1 + 10 End Sub
__________________