How to use value in Application Settings load?
Posted
by monkey_boys
on Stack Overflow
See other posts from Stack Overflow
or by monkey_boys
Published on 2010-05-02T03:43:03Z
Indexed on
2010/05/03
7:38 UTC
Read the original article
Hit count: 165
c#
|configuration
private void Form1_FormClosing(object sender, FormClosingEventArgs e)
{
Properties.Settings.Default.Save();
}
I used Application Settings and When Form was load i see value in control but i can't use its when Form load event.
how to use value that bind from Application Settings when event Form1_Load ?
© Stack Overflow or respective owner