Esempio n. 1
0
        private void button_OK_Click(object sender, EventArgs e)
        {
            if (test())
            {
                Properties.Settings.Default.host     = textBox_host.Text;
                Properties.Settings.Default.database = textBox_database.Text;
                Properties.Settings.Default.user     = textBox_user.Text;
                Properties.Settings.Default.password = textBox_password.Text;

                Data.host             = Properties.Settings.Default.host;
                Data.database         = Properties.Settings.Default.database;
                Data.user             = Properties.Settings.Default.user;
                Data.password         = Properties.Settings.Default.password;
                Data.connectionString = "SERVER=" + Data.host + ";" + "DATABASE=" +
                                        Data.database + ";" + "UID=" + Data.user + ";" + "PASSWORD="******";CharSet=utf8;";

                this.Close();
            }
            else
            {
                MessageBox.Show("Ошибка соединения с Базой Данных! Подробности в консоли.", "Тестирование связи");
                form_console f2 = new form_console();
                if (!Data.use_console)
                {
                    f2.Show();
                }
            }
            Properties.Settings.Default.log_path = textBox_log_path.Text;
            Properties.Settings.Default.Save();
        }
Esempio n. 2
0
        private void button_OK_Click(object sender, EventArgs e)
        {
            if (test())
            {
                Properties.Settings.Default.host = textBox_host.Text;
                Properties.Settings.Default.database = textBox_database.Text;
                Properties.Settings.Default.user = textBox_user.Text;
                Properties.Settings.Default.password = textBox_password.Text;

                Data.host = Properties.Settings.Default.host;
                Data.database = Properties.Settings.Default.database;
                Data.user = Properties.Settings.Default.user;
                Data.password = Properties.Settings.Default.password;
                Data.connectionString = "SERVER=" + Data.host + ";" + "DATABASE=" +
                    Data.database + ";" + "UID=" + Data.user + ";" + "PASSWORD="******";CharSet=utf8;";

                this.Close();
            }
            else
            {
                MessageBox.Show("Ошибка соединения с Базой Данных! Подробности в консоли.", "Тестирование связи");
                form_console f2 = new form_console();
                if (!Data.use_console) f2.Show();
            }
            Properties.Settings.Default.log_path = textBox_log_path.Text;
            Properties.Settings.Default.Save();
        }
Esempio n. 3
0
        private void консольToolStripMenuItem_Click(object sender, EventArgs e)
        {
            form_console f2 = new form_console();

            if (!Data.use_console)
            {
                f2.Show();
            }
        }
Esempio n. 4
0
 private void button_test_Click(object sender, EventArgs e)
 {
     if (test())
     {
         MessageBox.Show("Соединение с Базой Данных успешно!", "Тестирование связи");
     }
     else
     {
         MessageBox.Show("Ошибка соединения с Базой Данных! Подробности в консоли.", "Тестирование связи");
         form_console f2 = new form_console();
         if (!Data.use_console) f2.Show();
     }
 }
Esempio n. 5
0
 private void button_test_Click(object sender, EventArgs e)
 {
     if (test())
     {
         MessageBox.Show("Соединение с Базой Данных успешно!", "Тестирование связи");
     }
     else
     {
         MessageBox.Show("Ошибка соединения с Базой Данных! Подробности в консоли.", "Тестирование связи");
         form_console f2 = new form_console();
         if (!Data.use_console)
         {
             f2.Show();
         }
     }
 }
Esempio n. 6
0
 private void консольToolStripMenuItem_Click(object sender, EventArgs e)
 {
     form_console f2 = new form_console();
     if (!Data.use_console) f2.Show();
 }