Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have created a splitterLocation setting, Type system.Drawing.Point and Scope : User. to save the splitter location when the user change it. and load again with the new location when the form load.

private void splitter1_LocationChanged(object sender, EventArgs e)
    {
      MailSystem.Properties.Settings.Default.splitterLocation = splitter1.Location;
        MailSystem.Properties.Settings.Default.Save();
    }

private void Form1_Load(object sender, EventArgs e)
    {
        splitter1.Location = MailSystem.Properties.Settings.Default.splitterLocation;
     }

but it doesnt work i dont know why ?.

share|improve this question

1 Answer

up vote 1 down vote accepted

Try moving the saving code to the FormClosing event.

private void Form1_FormClosing(object sender, EventArgs e)
{
  MailSystem.Properties.Settings.Default.splitterLocation = splitter1.Location;
  MailSystem.Properties.Settings.Default.Save();
}

and make sure your splitter1 control isn't being docked, DockStyle.None.

share|improve this answer
yea the problem is that it's docked. Thank you – Paula Shenouda Aug 26 '11 at 13:44

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.