Hi

When DataGridView1 has focus, ie, the user is entering data, i'd like tool strip 6 to be color.Firebrick

and when somewhere else on the form is clicked, toolstrip 6 should be color.gray

Code:
Private Sub DataGridView1_GotFocus(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.GotFocus
        ToolStrip6.BackColor = Color.Firebrick

    End Sub
this code doesnt seem to work...any help is welcome