Exemple #1
0
 void ucMifConfigEdit_Load(object sender, EventArgs e)
 {
     _mifConfig    = new MifConfig();
     textBox1.Text = _mifConfig.GetConfigValue("Workspace");
     textBox2.Text = _mifConfig.GetConfigValue("TEMP");
     textBox3.Text = _mifConfig.GetConfigValue("Report");
 }
Exemple #2
0
        private static void LoadMifEnvironment()
        {
            MifConfig config = new MifConfig();

            _workSpaceDir = config.GetConfigValue("Workspace");
            _cacheDir     = config.GetConfigValue("TEMP");
            _reportDir    = config.GetConfigValue("Report");
        }