Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

RichardAlbrecht

@RichardAlbrecht
About
Posts
2
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problems with opening Child Window in MDI
    R RichardAlbrecht

    I tried resizing the child form but it ended up being too small in the main form window which is not the desired goal. no matter how I resized it I would have the child form either too small and get the scroll bars. Thanks

    C# help question

  • Problems with opening Child Window in MDI
    R RichardAlbrecht

    I have a main form with menu options to open child forms within this main form window. Problem I am seeing is that I get scroll bars when I do this. if I move around with the scroll bars they disappear and give me what I wanted. Now if I make the menu invisible the child form opens correctly. But I need the menu bar so other child forms can be opened. The goals is the following for every child form opened; • Without scroll bars • Without control box • With the main menu bar still visible • Child window docked nicely. Does anyone have ideas as to why I am getting this behavior and how I can get the behavior I want? Sample of the current code to open the child form from the main form. private void menuBornEntry_Click(object sender, System.EventArgs e) { /// Performing Born Entry activity . . . frmBornEntry dlgBornEntry = new frmBornEntry () ; dlgBornEntry.MdiParent = this ; dlgBornEntry.Activated += new EventHandler(ChildWindow_Opened); dlgBornEntry.Closed += new EventHandler(ChildWindow_Closed); dlgBornEntry.Dock = DockStyle.Fill ; dlgBornEntry.Show () ; } Thanks Rich

    C# help question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups