Click here to Skip to main content
15,886,067 members
Home / Discussions / C#
   

C#

 
AnswerRe: Connection String in Properties.Settings Pin
PIEBALDconsult28-Dec-12 14:32
mvePIEBALDconsult28-Dec-12 14:32 
GeneralRe: Connection String in Properties.Settings Pin
TheJudeDude28-Dec-12 15:47
TheJudeDude28-Dec-12 15:47 
Questionbasic question close and collapse methods Pin
mhd.sbt28-Dec-12 3:22
mhd.sbt28-Dec-12 3:22 
AnswerRe: basic question close and collapse methods Pin
fjdiewornncalwe28-Dec-12 3:29
professionalfjdiewornncalwe28-Dec-12 3:29 
GeneralRe: basic question close and collapse methods Pin
mhd.sbt28-Dec-12 3:42
mhd.sbt28-Dec-12 3:42 
AnswerRe: basic question close and collapse methods Pin
PIEBALDconsult28-Dec-12 3:33
mvePIEBALDconsult28-Dec-12 3:33 
Questionset the parent form size according to child form in mdi form Pin
Arun kumar Gautam28-Dec-12 1:12
Arun kumar Gautam28-Dec-12 1:12 
AnswerRe: set the parent form size according to child form in mdi form Pin
Matt U.28-Dec-12 4:16
Matt U.28-Dec-12 4:16 
In the MDI container form, subscribe to the child form's SizeChanged event:

C#
private void NewChildForm()
{
    ChildForm child = new ChildForm();
    child.MdiParent = this;
    child.SizeChanged += new EventHandler(this.childForm_SizeChanged);
}

private void childForm_SizeChanged(object sender, EventArgs e)
{
    Form child = sender as Form;
    this.Size = new Size(child.Width, child.Height);
}


Something like that should get the job done. Just adjust the "new Size(int, int)" call accordingly.
djj55: Nice but may have a permission problem
Pete O'Hanlon: He has my permission to run it.

AnswerRe: set the parent form size according to child form in mdi form Pin
Eddy Vluggen28-Dec-12 9:04
professionalEddy Vluggen28-Dec-12 9:04 
QuestionSelected rows in a gridview Pin
rakeshs31227-Dec-12 19:26
rakeshs31227-Dec-12 19:26 
AnswerRe: Selected rows in a gridview Pin
vanikanc28-Dec-12 6:48
vanikanc28-Dec-12 6:48 
GeneralRe: Selected rows in a gridview Pin
rakeshs31228-Dec-12 18:48
rakeshs31228-Dec-12 18:48 
AnswerRe: Selected rows in a gridview Pin
Abhinav S28-Dec-12 23:39
Abhinav S28-Dec-12 23:39 
QuestionSliding an Image on another Image Pin
Shubhanshu Pathak27-Dec-12 18:09
Shubhanshu Pathak27-Dec-12 18:09 
QuestionSerial Port Won't Send While Receiving Pin
C-P-User-327-Dec-12 15:13
C-P-User-327-Dec-12 15:13 
AnswerRe: Serial Port Won't Send While Receiving Pin
Richard MacCutchan27-Dec-12 21:45
mveRichard MacCutchan27-Dec-12 21:45 
GeneralRe: Serial Port Won't Send While Receiving Pin
C-P-User-328-Dec-12 5:21
C-P-User-328-Dec-12 5:21 
GeneralRe: Serial Port Won't Send While Receiving Pin
Richard MacCutchan28-Dec-12 5:45
mveRichard MacCutchan28-Dec-12 5:45 
GeneralRe: Serial Port Won't Send While Receiving Pin
C-P-User-328-Dec-12 5:59
C-P-User-328-Dec-12 5:59 
GeneralRe: Serial Port Won't Send While Receiving Pin
Richard MacCutchan28-Dec-12 6:40
mveRichard MacCutchan28-Dec-12 6:40 
AnswerRe: Serial Port Won't Send While Receiving Pin
GrooverFromHolland28-Dec-12 7:04
GrooverFromHolland28-Dec-12 7:04 
AnswerRe: Serial Port Won't Send While Receiving Pin
jschell28-Dec-12 9:53
jschell28-Dec-12 9:53 
GeneralRe: Serial Port Won't Send While Receiving Pin
C-P-User-331-Dec-12 10:54
C-P-User-331-Dec-12 10:54 
GeneralRe: Serial Port Won't Send While Receiving Pin
C-P-User-31-Jan-13 13:35
C-P-User-31-Jan-13 13:35 
GeneralRe: Serial Port Won't Send While Receiving Pin
C-P-User-31-Jan-13 13:36
C-P-User-31-Jan-13 13:36 

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.