hello guys..

can you help me on how to make 45 angle shoot or 45 angle movement of bullet in vb.net

See if this helps.
1 Button, 1 PictureBox

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        With PictureBox1
            .Left += 5
            .Top += 5
        End With
    End Sub

To change direction of movement, use .Left -= 5 , etc..

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.