Keith,
I think you should start looking at the non-client events such as
WM_NCPAINT, WM_NCLDBLCLICK and their managed counterparts if they exists. In
the worst case, you can always override the WndProc method and handle these
events in the old-fashioned way (I mean a switch statement analyzing the
type of the event and calling the appropriate handler routine).
--
Dmitriy Lapshin [C# / .NET MVP]
X-Unity Test Studio
http://x-unity.miik.com.ua/teststudio.aspx
Bring the power of unit testing to VS .NET IDE
"Keith Patrick" <(E-Mail Removed)> wrote in message
news:u$(E-Mail Removed)...
> I have an extension to the Windows shell I want to write where I need an
> extra button by the max/min/close buttons. Does anyone have an idea where
I
> would start looking to find out how to do this?
>
>