Windows Forms
.NET Development
VS Express Editions
Visual Studio
Visual J#
Windows Live
SQL Server
Windows Vista
Smart Device
Microsoft ISV
Visual C#
Visual FoxPro
VS Team System
Architecture
Game Technologies
Software Development Network>> Windows Forms>> how I can open e MDI form
how I can open e MDI form
Hot Topic
Details ComboBox Problem [Fixed]
Problem with databinding?
Outlook Calendar Look and Feel - Corrupts Form Designer
files have been blocked
ToolTip Control Related problem
unload me
What KB,books talk about hi performance grid view (cubes)?
How do I catch SelectionChangeCommitted event of a combobox in a datagrid?
Change the image of a DatagridviewImagecolumn for a specified cell
child form
Windows Forms
imports user32.dll into vb.net
Problem in Tray Pop Up (C#)
Updater Application Block and Win98/ME Clients
WYSIWYG HTML Editor Control
Is there a way to fire an event programmatically?
Setup Project: How do I make a dialog conditional?
How create the Task Controls like the ones in XP.
invalid FORMATETC error
change the default row hightlight color of DataGridView?
highlighting the word
how I can open e MDI form
I'm new in VB.net
Answer this question
how I can open e MDI form
bogomil
What do you mean
Rules for MDI is to have at least one MDIParent (set in the properties of the form), and whenever you create an instance of a form for that parent, you set the MdiParent to that form.
Dim NewForm as Form1 = new Form1()
NewForm.MdiParent = me
NewForm.Show()
how I can open e MDI form
Answer this question
how I can open e MDI form
bogomil
Rules for MDI is to have at least one MDIParent (set in the properties of the form), and whenever you create an instance of a form for that parent, you set the MdiParent to that form.
Dim NewForm as Form1 = new Form1()
NewForm.MdiParent = me
NewForm.Show()