Inherited Forms

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Chris H.

    #1

    Inherited Forms

    Forgive me for asking a stupid question but I am still failry new .Net (C#)

    My question is that I have a form with a few controls which is base form for
    several other forms.

    In the most part, the layout of the controls is OK for the child forms but a
    couple of them have additional controls that require the base controls to be
    moved around but the IDE does not allow me.

    Am I being a complete thicko and doing something wrong or is this the way
    the of the .Net world......

    Thanks
    Chris....


  • Christopher Kimbell

    #2
    Re: Inherited Forms

    Change the "Modifiers" property to something else than private. Then you can
    move things around on inherited forms.

    Chris


    "Chris H." <spam@someone.e lse> wrote in message
    news:ccp29r$3qe $1$830fa79f@new s.demon.co.uk.. .[color=blue]
    > Forgive me for asking a stupid question but I am still failry new .Net[/color]
    (C#)[color=blue]
    >
    > My question is that I have a form with a few controls which is base form[/color]
    for[color=blue]
    > several other forms.
    >
    > In the most part, the layout of the controls is OK for the child forms but[/color]
    a[color=blue]
    > couple of them have additional controls that require the base controls to[/color]
    be[color=blue]
    > moved around but the IDE does not allow me.
    >
    > Am I being a complete thicko and doing something wrong or is this the way
    > the of the .Net world......
    >
    > Thanks
    > Chris....
    >
    >[/color]


    Comment

    • Chris H.

      #3
      Re: Inherited Forms

      Doh.....

      Thanks Chris.....that did the trick....


      "Christophe r Kimbell" <c_kimbell@onli ne.nospam> wrote in message
      news:40f0758c$1 @news.broadpark .no...[color=blue]
      > Change the "Modifiers" property to something else than private. Then you[/color]
      can[color=blue]
      > move things around on inherited forms.
      >
      > Chris
      >
      >
      > "Chris H." <spam@someone.e lse> wrote in message
      > news:ccp29r$3qe $1$830fa79f@new s.demon.co.uk.. .[color=green]
      > > Forgive me for asking a stupid question but I am still failry new .Net[/color]
      > (C#)[color=green]
      > >
      > > My question is that I have a form with a few controls which is base form[/color]
      > for[color=green]
      > > several other forms.
      > >
      > > In the most part, the layout of the controls is OK for the child forms[/color][/color]
      but[color=blue]
      > a[color=green]
      > > couple of them have additional controls that require the base controls[/color][/color]
      to[color=blue]
      > be[color=green]
      > > moved around but the IDE does not allow me.
      > >
      > > Am I being a complete thicko and doing something wrong or is this the[/color][/color]
      way[color=blue][color=green]
      > > the of the .Net world......
      > >
      > > Thanks
      > > Chris....
      > >
      > >[/color]
      >
      >[/color]


      Comment

      Working...