Click here to Skip to main content
15,914,162 members
Home / Discussions / C#
   

C#

 
GeneralRe: C --> C# problem Pin
Vinayaka Krishna Shenoy19-May-05 23:33
Vinayaka Krishna Shenoy19-May-05 23:33 
Generaldelete a registry key during the unistallation Pin
Sasuko19-May-05 2:21
Sasuko19-May-05 2:21 
QuestionZip util for distributing your apps compressed? Pin
John'o19-May-05 1:30
John'o19-May-05 1:30 
AnswerRe: Zip util for distributing your apps compressed? Pin
Carl Mercier19-May-05 2:06
Carl Mercier19-May-05 2:06 
GeneralCharting Pin
PaleyX19-May-05 1:28
PaleyX19-May-05 1:28 
GeneralMDI Pin
Jag_K19-May-05 0:39
Jag_K19-May-05 0:39 
GeneralRe: MDI Pin
Maqsood Ahmed19-May-05 0:46
Maqsood Ahmed19-May-05 0:46 
GeneralRe: MDI Pin
gaby2r19-May-05 1:28
gaby2r19-May-05 1:28 
what it should do (if you change the mdiChild to it's correct name MDIChild) is assign the current form as mdiparrent to the MDIChild form.

maybe the names confuse you. here is a better example:
<br />
Form P = new Form();<br />
Form C = new Form();<br />
P.IsMdiContainer = true; //alows the form to contain MdiChilds<br />
C.MdiParent = P; //states that C is a MdiChild of P<br />
P.Show();<br />
C.Show();<br />


bare in mind that once a from is a mdiChild it cannot be a MdiParent as well(as in you can't have a mdi form inside an mdiform). In the above example if you set C.IsMdiContainer = true; an exception will be raised.
GeneralRe: MDI Pin
Anonymous19-May-05 3:14
Anonymous19-May-05 3:14 
QuestionMenuItem MouseOver Event? Pin
Pikebu18-May-05 23:55
Pikebu18-May-05 23:55 
AnswerRe: MenuItem MouseOver Event? Pin
Ashok Dhamija19-May-05 0:43
Ashok Dhamija19-May-05 0:43 
AnswerRe: MenuItem MouseOver Event? Pin
Gary Perkin19-May-05 1:18
Gary Perkin19-May-05 1:18 
GeneralRe: MenuItem MouseOver Event? Pin
Pikebu19-May-05 1:46
Pikebu19-May-05 1:46 
GeneralRe: MenuItem MouseOver Event? Pin
Gary Perkin19-May-05 2:29
Gary Perkin19-May-05 2:29 
GeneralRe: MenuItem MouseOver Event? Pin
Pikebu19-May-05 2:45
Pikebu19-May-05 2:45 
GeneralRe: MenuItem MouseOver Event? Pin
Gary Perkin19-May-05 2:50
Gary Perkin19-May-05 2:50 
GeneralRe: MenuItem MouseOver Event? Pin
Gary Perkin19-May-05 2:47
Gary Perkin19-May-05 2:47 
AnswerRe: MenuItem MouseOver Event? Pin
Anonymous19-May-05 3:17
Anonymous19-May-05 3:17 
Generalfunction InternetDial Pin
mikica1718-May-05 23:40
mikica1718-May-05 23:40 
GeneralType of project Pin
rathishps18-May-05 23:03
rathishps18-May-05 23:03 
GeneralRe: Type of project Pin
MoustafaS18-May-05 23:06
MoustafaS18-May-05 23:06 
GeneralRe: Type of project Pin
rathishps19-May-05 0:06
rathishps19-May-05 0:06 
GeneralRe: Type of project Pin
Ali Iqbal Khan18-May-05 23:21
Ali Iqbal Khan18-May-05 23:21 
GeneralRe: Type of project Pin
rathishps19-May-05 0:10
rathishps19-May-05 0:10 
GeneralRe: Type of project Pin
MoustafaS19-May-05 3:57
MoustafaS19-May-05 3:57 

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.