I've got some base classes I'm creating with a specific set of functionality
that needs to be present throughout our app. I'm not finding any way to
programmatically get to the control menu in the upper left of each window.
I've always been able to add to this in the past. How do I get access to
this now?

We're using VStudio Team Suite .NET 2.0....

Thanks!

Re: Accessing a forms control menu by Kevin

Kevin
Mon Apr 23 05:39:57 CDT 2007

What exactly do you want to do with it?

--
HTH,

Kevin Spencer
Microsoft MVP

Printing Components, Email Components,
FTP Client Classes, Enhanced Data Controls, much more.
DSI PrintManager, Miradyne Component Libraries:
http://www.miradyne.net

"Tim Greenwood" <tim_greenwood AT yahoo DOT com> wrote in message
news:u6kM8z3gHHA.4416@TK2MSFTNGP03.phx.gbl...
> I've got some base classes I'm creating with a specific set of
> functionality that needs to be present throughout our app. I'm not
> finding any way to programmatically get to the control menu in the upper
> left of each window. I've always been able to add to this in the past.
> How do I get access to this now?
>
> We're using VStudio Team Suite .NET 2.0....
>
> Thanks!
>



Re: Accessing a forms control menu by Stoitcho

Stoitcho
Tue Apr 24 09:48:46 CDT 2007

Control menu is not exposed to the manage code beside hiding/showing it.

If you want to modify this menu you need to resort to using PInvoke and
Win32 API. Get handle to the control manu using GetSystemMenu Win32 API
mehod.


--
HTH
Stoitcho Goutsev (100)


"Tim Greenwood" <tim_greenwood AT yahoo DOT com> wrote in message
news:u6kM8z3gHHA.4416@TK2MSFTNGP03.phx.gbl...
> I've got some base classes I'm creating with a specific set of
> functionality that needs to be present throughout our app. I'm not
> finding any way to programmatically get to the control menu in the upper
> left of each window. I've always been able to add to this in the past.
> How do I get access to this now?
>
> We're using VStudio Team Suite .NET 2.0....
>
> Thanks!
>