Click here to Skip to main content
15,902,635 members
Home / Discussions / C#
   

C#

 
AnswerRe: ShowDialog method not showing the popup in foreground. Pin
Paul Conrad22-Sep-08 6:36
professionalPaul Conrad22-Sep-08 6:36 
GeneralRe: ShowDialog method not showing the popup in foreground. Pin
PrashantGadhave22-Sep-08 6:54
PrashantGadhave22-Sep-08 6:54 
Questionwork with a ssh connection Pin
caradri22-Sep-08 4:45
caradri22-Sep-08 4:45 
AnswerRe: work with a ssh connection Pin
Paul Conrad22-Sep-08 6:35
professionalPaul Conrad22-Sep-08 6:35 
RantRe: work with a ssh connection Pin
caradri22-Sep-08 18:51
caradri22-Sep-08 18:51 
QuestionHow do I set the location of a form? Pin
arnold_w22-Sep-08 4:06
arnold_w22-Sep-08 4:06 
AnswerRe: How do I set the location of a form? Pin
Caio Kinzel Filho22-Sep-08 4:17
Caio Kinzel Filho22-Sep-08 4:17 
AnswerRe: How do I set the location of a form? Pin
DaveyM6922-Sep-08 4:28
professionalDaveyM6922-Sep-08 4:28 
This code works if you want to do it from the parent as you asked. It may be better if ammended an placed in the child form's Load methd (after InitializeComponent()).
Form2 form2 = new Form2();
form2.MdiParent = this;
form2.Location = new Point(
    this.ClientRectangle.Width / 2 - form2.Width / 2,
    this.ClientRectangle.Height / 2 - form2.Height / 2);
form2.Show();


Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Expect everything to be hard and then enjoy the things that come easy. (code-frog)

AnswerRe: How do I set the location of a form? Pin
Nouman Bhatti22-Sep-08 7:44
Nouman Bhatti22-Sep-08 7:44 
AnswerRe: How do I set the location of a form? Pin
arnold_w22-Sep-08 21:35
arnold_w22-Sep-08 21:35 
QuestionManagementObject Pin
arkiboys22-Sep-08 3:55
arkiboys22-Sep-08 3:55 
AnswerRe: ManagementObject Pin
Mark Salsbery22-Sep-08 6:35
Mark Salsbery22-Sep-08 6:35 
GeneralRe: ManagementObject Pin
arkiboys22-Sep-08 21:09
arkiboys22-Sep-08 21:09 
GeneralRe: ManagementObject Pin
Mark Salsbery23-Sep-08 8:45
Mark Salsbery23-Sep-08 8:45 
GeneralRe: ManagementObject [modified] Pin
arkiboys23-Sep-08 20:52
arkiboys23-Sep-08 20:52 
GeneralRe: ManagementObject Pin
Mark Salsbery24-Sep-08 4:55
Mark Salsbery24-Sep-08 4:55 
GeneralRe: ManagementObject Pin
arkiboys24-Sep-08 6:48
arkiboys24-Sep-08 6:48 
GeneralRe: ManagementObject Pin
Mark Salsbery24-Sep-08 7:02
Mark Salsbery24-Sep-08 7:02 
GeneralRe: ManagementObject Pin
arkiboys24-Sep-08 21:00
arkiboys24-Sep-08 21:00 
GeneralRe: ManagementObject Pin
arkiboys24-Sep-08 21:07
arkiboys24-Sep-08 21:07 
GeneralRe: ManagementObject Pin
Mark Salsbery25-Sep-08 5:03
Mark Salsbery25-Sep-08 5:03 
GeneralRe: ManagementObject Pin
arkiboys25-Sep-08 22:44
arkiboys25-Sep-08 22:44 
GeneralRe: ManagementObject Pin
Mark Salsbery26-Sep-08 4:50
Mark Salsbery26-Sep-08 4:50 
GeneralRe: ManagementObject Pin
arkiboys26-Sep-08 10:27
arkiboys26-Sep-08 10:27 
QuestionWindows / Web Pin
ellllllllie22-Sep-08 2:12
ellllllllie22-Sep-08 2:12 

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.