Click here to Skip to main content
15,928,535 members
Home / Discussions / C#
   

C#

 
GeneralCreateGraphics Problem Pin
Tristan Rhodes1-Apr-04 10:25
Tristan Rhodes1-Apr-04 10:25 
GeneralRe: CreateGraphics Problem Pin
Heath Stewart1-Apr-04 10:39
protectorHeath Stewart1-Apr-04 10:39 
GeneralRe: CreateGraphics Problem Pin
Tristan Rhodes1-Apr-04 10:50
Tristan Rhodes1-Apr-04 10:50 
GeneralRe: CreateGraphics Problem Pin
Heath Stewart2-Apr-04 8:58
protectorHeath Stewart2-Apr-04 8:58 
GeneralRe: DragDrop registration failed - Error Pin
Heath Stewart1-Apr-04 8:46
protectorHeath Stewart1-Apr-04 8:46 
GeneralRe: DragDrop registration failed - Error Pin
Tristan Rhodes1-Apr-04 10:39
Tristan Rhodes1-Apr-04 10:39 
GeneralMDIChild help Pin
robmays1-Apr-04 8:37
robmays1-Apr-04 8:37 
GeneralRe: MDIChild help Pin
Heath Stewart1-Apr-04 8:58
protectorHeath Stewart1-Apr-04 8:58 
So long as you're not talking about an MDI child form within another MDI child form (which isn't supported in the .NET FCL), you can simply get the parent MDI form of the first child and add the new child as an MDI child of the parent:
MDIChildForm child = new MDIChildForm(); // Or whatever your class is
if (MdiParent != null)
  MdiParent.AddOwnedForm(child);


 

Microsoft MVP, Visual C#
My Articles
GeneralRe: MDIChild help Pin
robmays1-Apr-04 9:14
robmays1-Apr-04 9:14 
GeneralGive a panel a focus Pin
Jonathan Slenders1-Apr-04 8:22
Jonathan Slenders1-Apr-04 8:22 
GeneralRe: Give a panel a focus Pin
Heath Stewart1-Apr-04 8:55
protectorHeath Stewart1-Apr-04 8:55 
GeneralRe: Give a panel a focus Pin
Jonathan Slenders5-Apr-04 7:50
Jonathan Slenders5-Apr-04 7:50 
General2 dimension textbox array Pin
hkl1-Apr-04 8:00
hkl1-Apr-04 8:00 
GeneralRe: 2 dimension textbox array Pin
Heath Stewart1-Apr-04 8:53
protectorHeath Stewart1-Apr-04 8:53 
GeneralRe: 2 dimension textbox array Pin
hkl1-Apr-04 9:30
hkl1-Apr-04 9:30 
GeneralDragDrop registration failed - Error Pin
Tristan Rhodes1-Apr-04 7:19
Tristan Rhodes1-Apr-04 7:19 
GeneralRe: DragDrop registration failed - Error Pin
leppie1-Apr-04 7:43
leppie1-Apr-04 7:43 
GeneralRe: DragDrop registration failed - Error Pin
Tristan Rhodes1-Apr-04 9:34
Tristan Rhodes1-Apr-04 9:34 
GeneralData Mining for intrusion Detection Pin
srilakshmib1-Apr-04 6:46
srilakshmib1-Apr-04 6:46 
GeneralRe: Data Mining for intrusion Detection Pin
Daniel Turini1-Apr-04 20:42
Daniel Turini1-Apr-04 20:42 
GeneralRe: Data Mining for intrusion Detection Pin
aslan200425-Dec-11 18:04
aslan200425-Dec-11 18:04 
Generalpost form fields to a page programmatically Pin
1-Apr-04 5:56
suss1-Apr-04 5:56 
GeneralRe: post form fields to a page programmatically Pin
Heath Stewart1-Apr-04 6:06
protectorHeath Stewart1-Apr-04 6:06 
GeneralRe: post form fields to a page programmatically Pin
partyganger1-Apr-04 9:50
partyganger1-Apr-04 9:50 
QuestionOCX Control .NET Heath Can you help? Pin
sbeausol1-Apr-04 5:32
sbeausol1-Apr-04 5:32 

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.