Please could you...
-
Hi I need to make the way a child form pop up when I run my project.It contains information about my program and its the first form that should be seen>Anybody can tell mr how can I manage it?
-
Hi I need to make the way a child form pop up when I run my project.It contains information about my program and its the first form that should be seen>Anybody can tell mr how can I manage it?
-
On the OnLoad event of the parent form do the following. private void OnFormLoad(object sender, System.EventArgs e) { ChildForm f = new ChildForm(); f.MdiParent = this; f.Show(); }
Does it work? In your way, you have to set this.isMdiParent = true; Then its appearance will change. I do not think it is a good method. ps: can you give me some idea to make a logo. many thanks!