summaryrefslogtreecommitdiff
path: root/kurier/MysqlSettings.cs
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2018-10-13 18:01:37 +0200
committeremkael <emkael@tlen.pl>2019-10-27 14:53:06 +0100
commit4414cc3a6f2b9fe9c318a9c7438ee139ef830099 (patch)
tree4a210f24a68fef7fdca4b34816cba6387b401ecc /kurier/MysqlSettings.cs
parentae9fddd795e67f3b6129053020fdb15856601285 (diff)
Renaming project
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);
- }
- }
- }
-}