Easy way to change font colour of a command button is to choose the Microsoft Forms 2 Object Library and use the command button provided there. That has a font colour/forecolour property. Granted, other properties / methods of it are pretty naff....

getting rid of pic:
Code:
Private Sub cmdPicOff_Click()

    Picture1.Picture = Nothing

End Sub
or do you mean this:
Code:
Private Sub cmdPicOff_Click()

    Me.Picture = Nothing

End Sub
Cheers