Click here to Skip to main content
15,909,898 members
Home / Discussions / C#
   

C#

 
GeneralRe: design time problems... Pin
sianatia2-Nov-04 5:58
sianatia2-Nov-04 5:58 
GeneralRe: design time problems... Pin
LongRange.Shooter2-Nov-04 6:27
LongRange.Shooter2-Nov-04 6:27 
GeneralRe: design time problems... Pin
LongRange.Shooter2-Nov-04 6:31
LongRange.Shooter2-Nov-04 6:31 
Generalrunning windows application from Command prompt Pin
vchalla29-Oct-04 1:27
vchalla29-Oct-04 1:27 
GeneralRe: running windows application from Command prompt Pin
mrlou8829-Oct-04 4:04
mrlou8829-Oct-04 4:04 
GeneralRe: running windows application from Command prompt Pin
Anonymous30-Oct-04 2:55
Anonymous30-Oct-04 2:55 
GeneralMDI app and hosted controls Pin
ewan29-Oct-04 1:24
ewan29-Oct-04 1:24 
GeneralRe: MDI app and hosted controls Pin
LongRange.Shooter29-Oct-04 2:50
LongRange.Shooter29-Oct-04 2:50 
Try this:

public Form1()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();

this.IsMdiContainer = true;

TextBox boxA = new TextBox();<br />
TextBox boxB = new TextBox();


Form frmchild=new Form();
frmchild.MdiParent=this;
frmchild.Controls.Add(boxA);
frmchild.Show();

Form frmchild2=new Form();
frmchild2.MdiParent=this;
frmchild2.Controls.Add(boxB);
frmchild2.Show();

}

There are 10 kinds of people in the world.

Those that read binary...

...and those who don't.

GeneralRe: MDI app and hosted controls Pin
ewan29-Oct-04 3:49
ewan29-Oct-04 3:49 
GeneralRe: MDI app and hosted controls Pin
LongRange.Shooter29-Oct-04 6:42
LongRange.Shooter29-Oct-04 6:42 
GeneralRe: MDI app and hosted controls Pin
Dave Kreskowiak29-Oct-04 5:05
mveDave Kreskowiak29-Oct-04 5:05 
GeneralGetting properties of a MS Word file Pin
Weckmann29-Oct-04 1:09
Weckmann29-Oct-04 1:09 
GeneralSize assignment to a control Pin
eDip29-Oct-04 0:07
eDip29-Oct-04 0:07 
GeneralRe: Size assignment to a control Pin
Stanciu Vlad29-Oct-04 4:49
Stanciu Vlad29-Oct-04 4:49 
GeneralRe: Size assignment to a control Pin
Dave Kreskowiak29-Oct-04 4:54
mveDave Kreskowiak29-Oct-04 4:54 
GeneralRe: Size assignment to a control Pin
Ketty Avashia29-Oct-04 9:45
Ketty Avashia29-Oct-04 9:45 
GeneralPrint RichTextBox Docs... Pin
Zamolxes28-Oct-04 23:56
Zamolxes28-Oct-04 23:56 
GeneralRe: Print RichTextBox Docs... Pin
sreejith ss nair29-Oct-04 4:44
sreejith ss nair29-Oct-04 4:44 
GeneralRe: Print RichTextBox Docs... Pin
Dave Kreskowiak29-Oct-04 4:49
mveDave Kreskowiak29-Oct-04 4:49 
Generalpixel matrix and neural network Pin
Phu Nguyen Si28-Oct-04 22:01
Phu Nguyen Si28-Oct-04 22:01 
GeneralInteresting error Pin
StephenMcAllister28-Oct-04 21:28
StephenMcAllister28-Oct-04 21:28 
GeneralRe: Interesting error Pin
Stanciu Vlad29-Oct-04 4:46
Stanciu Vlad29-Oct-04 4:46 
GeneralRe: Deployment Project Pin
Dave Kreskowiak29-Oct-04 4:40
mveDave Kreskowiak29-Oct-04 4:40 
QuestionHow to do this in C#? Pin
momer28-Oct-04 20:58
momer28-Oct-04 20:58 
AnswerRe: How to do this in C#? Pin
Daniel Turini28-Oct-04 21:31
Daniel Turini28-Oct-04 21:31 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.