If you want it to show up in the components area then don't inherit from
Control or UserControl, inherit from Component.
If you need subcomponents of your control to show up in the component area,
you'll need to use a ControlDesigner.
Bob
[quoted text, click to view] "Oleg Slyusarchuk" <slyuso_AT_SOMETHING_LIKE_yahoo.com> wrote in message
news:%23727H5VMEHA.1340@TK2MSFTNGP12.phx.gbl...
> Thank you, Bob
>
> It's definitelly right answer to my wrong question.
>
> I DO want my component be in a toolboox.
>
> I don't know a name of the area at the bootom of a form where components
are
> placed when they are dragged onto a form.
> It's exactly a place where I don't want my sub-components of my main
> component be placed.
>
> thanks again......
>
>
> "Bob" <nobody@nowhere.com> wrote in message
> news:%23t4P0zUMEHA.3556@TK2MSFTNGP09.phx.gbl...
> > Imports System.ComponentModel
> >
> > <ToolboxItem(False)> _
> > Public Class SomeControl
> > Inherits UserControl
> > '...
> > End Class
> >
> > "Oleg Slyusarchuk" <slyuso_AT_SOMETHING_LIKE_yahoo.com> wrote in message
> > news:uokBoMUMEHA.2736@TK2MSFTNGP11.phx.gbl...
> > > I have a component that is a part of a control
> > > How make this component NOT be shown in toolbox?
> > >
> > > P.S.
> > > I know there is an attribute, I found it once, now I've spent more
than
> 2
> > > hours trying to figure it out.
> > > Sorry, if it too simple
> > >
> > >
> >
>
>