summaryrefslogtreecommitdiff
path: root/kurier/MysqlSettings.cs
diff options
context:
space:
mode:
Diffstat (limited to 'kurier/MysqlSettings.cs')
-rw-r--r--kurier/MysqlSettings.cs46
1 files changed, 0 insertions, 46 deletions
diff --git a/kurier/MysqlSettings.cs b/kurier/MysqlSettings.cs
deleted file mode 100644
index 01b1b08..0000000
--- a/kurier/MysqlSettings.cs
+++ /dev/null
@@ -1,46 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.ComponentModel;
-using System.Data;
-using System.Drawing;
-using System.Text;
-using System.Windows.Forms;
-
-namespace kurier
-{
- public partial class MysqlSettings : Form
- {
- public MysqlSettings()
- {
- InitializeComponent();
- }
-
- private void MysqlSettings_Load(object sender, EventArgs e)
- {
- eHost.Text = Properties.Settings.Default.HOST;
- eUser.Text = Properties.Settings.Default.USER;
- ePass.Text = Properties.Settings.Default.PASS;
- ePort.Text = Properties.Settings.Default.PORT;
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- Properties.Settings.Default.HOST = eHost.Text;
- Properties.Settings.Default.USER = eUser.Text;
- Properties.Settings.Default.PASS = ePass.Text;
- Properties.Settings.Default.PORT = ePort.Text;
-
- string msg = MySQL.test();
- if (msg == "")
- {
- Properties.Settings.Default.CONFIGURED = true;
- Properties.Settings.Default.Save();
- Close();
- }
- else
- {
- MessageBox.Show(msg, "Nieprawidłowe ustawienia", MessageBoxButtons.OK, MessageBoxIcon.Stop);
- }
- }
- }
-}