Ejemplo n.º 1
0
        public FileSync(string _variant)
        {
            FileVariant = _variant;
            localFolder = Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
            localFolder = Path.Combine(localFolder, Properties.Settings.Default.AppDataFolder);
            credentials = PasswordManager.GetPassword(Properties.Settings.Default.WooTable_OracleData);
            client = new WebClient();
            client.Credentials = new NetworkCredential(credentials.Item1, credentials.Item2);

            CreateAppdataFolder();
        }
Ejemplo n.º 2
0
        private void Form_Settings_Load(object sender, EventArgs e)
        {
            try
            {
                StringSetter.LocalizeMe((Form)this);

                Form_Settings_check_ModifyStatusBar.Checked = Properties.Settings.Default.StatusBarUpdate;
                Form_Settings_check_ShowMin.Checked         = Properties.Settings.Default.Show_Min;
                Form_Settings_check_ShowMax.Checked         = Properties.Settings.Default.Show_Max;
                Form_Settings_check_ShowMedian.Checked      = Properties.Settings.Default.Show_Median;
                Form_Settings_check_ShowMin.Enabled         = Properties.Settings.Default.StatusBarUpdate;
                Form_Settings_check_ShowMax.Enabled         = Properties.Settings.Default.StatusBarUpdate;
                Form_Settings_check_ShowMedian.Enabled      = Properties.Settings.Default.StatusBarUpdate;
                Form_Settings_combo_Provider.Text           = Properties.Settings.Default.Curr_Provider;
                Form_Settings_text_Ratio.Text               = Properties.Settings.Default.Curr_Risk.ToString();
                Form_Settings_check_DialogOnMath.Checked    = Properties.Settings.Default.DialogOnMath;
                Form_Settings_check_ReplaceNLine.Checked    = Properties.Settings.Default.XLSNewLine;
                Form_Settings_combo_OracleDataLocation.Text = Properties.Settings.Default.OracleDataLocation;
                //Form_Settings_check_DialogOnMath.Enabled = Properties.Settings.Default.StatusBarUpdate;

                Form_Settings_combo_lang.Items.Clear();
                foreach (string _str in fcie.Localizations("Labels"))
                {
                    Form_Settings_combo_lang.Items.Add(_str);
                }
                Form_Settings_combo_lang.Text = Properties.Settings.Default.CultureString + " (" + Properties.Settings.Default.Culture + ")";

                //Oracle login and password
                Tuple <string, string> OracleLogin = PasswordManager.GetPassword(Properties.Settings.Default.WooTable_OracleData);
                Form_Settings_text_OracleDataUsername.Text = OracleLogin.Item1;
                Form_Settings_text_OracleDataPassword.Text = OracleLogin.Item2;
            }
            catch (Exception E)
            {
                System.Windows.Forms.MessageBox.Show("Error: property could not be set. Error message: " + E.Message, "WooTable .::. Error", System.Windows.Forms.MessageBoxButtons.OK, System.Windows.Forms.MessageBoxIcon.Error);
            }
        }