As long as I'm thinking about it, this code will turn the frame red. You would add this to the Click event for the button (or every button, if there are more than one that you want to trigger this behavior) inside the frame.

Frame1.BackColor = RGB(255, 0, 0)
RGB is a red/green/blue color generator and you can tweak it to make it whatever color you want.