It really helps to use a New button also, something like the following. But
a better solution is to set up a comprehensive method that includes all
buttons and controls that are enabled/disabled as one.
Private Sub btnNew_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles btnNew.Click
BindingSource.AddNew()
txtQuantity.Enabled = true
btnNew.Enabled = false
btnSave.Enabled = true
End Sub
Private Sub btnSave_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles btnSave.Click
SaveRoutine()
txtQuantity.Enabled = false
btnSave.Enabled = false
End Sub