You can just set the forms "ActiveControl" property to Nothing in the the forms Shown event.

Code:
    Private Sub Form3_Shown(sender As Object, e As EventArgs) Handles Me.Shown
        Me.ActiveControl = Nothing

    End Sub