ShowFocusQues Problem

I've searched the forum on ShowFocusCues and found one solution that says to derive my own button and override the ShowFocusCues property.
I derive the button like normal, inheriting the system.windows.forms.button
I include this in the bottom of my code before the end of the class
(VB.NET)
Protected Overrides Readonly Property ShowFocusCues() as Boolean
Get
return false
End Get
End Property
When I add the bottom to my form, the button still has that annoying rectangle while the mouse is clicked on it. I'm trying to just make a button have a normal image, and a depressed image when the user has the mouse pressed. The rectangle just gets in the way and looks ugly. I have no idea what I'm doing wrong. Evidentally some other people have had success with it.
[813 byte] By [RonaldHuereca] at [2007-12-16]
# 1
What is your FlatStyle property set to for your button? System FlatStyle get rendered by the operating system, so it does not honor the ShowFocusCues.

-mark
Program Manager
Microsoft
This post is provided "as-is"

MarkRideout at 2007-9-9 > top of Msdn Tech,Windows Forms,Windows Forms General...