-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
165 lines (129 loc) · 4.44 KB
/
Form1.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Data.OleDb;
using System.Data.SqlClient;
namespace AHTC_2
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private const int CS_DropShadow = 0x00020000;
protected override CreateParams CreateParams
{
get
{
CreateParams cp = base.CreateParams;
cp.ClassStyle = CS_DropShadow;
return cp;
}
}
SqlConnection Sqlconn = new SqlConnection("Data Source=XEON\\SQLEXPRESS; Initial Catalog=AHTC;Integrated Security=True");
SqlCommand cmd = new SqlCommand();
SqlDataAdapter SqlDR = new SqlDataAdapter();
private void groupBox1_Enter(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
if (UserName.Text == "" && FirstPass.Text == "" && ConfPass.Text == "")
{
MessageBox.Show("Username and Password fields are empty", "Sign UP Failed!", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
else if (FirstPass.Text == ConfPass.Text)
{
Sqlconn.Open();
string register = "INSERT INTO Accounts VALUES ('" + UserName.Text + "','" + FirstPass.Text + "')";
cmd = new SqlCommand(register, Sqlconn);
cmd.ExecuteNonQuery();
Sqlconn.Close();
UserName.Text = "";
FirstPass.Text = "";
ConfPass.Text = "";
MessageBox.Show("Your Account has been Successfully Created", "Registration Success", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else
{
MessageBox.Show("Passwords does not match, Please Re-enter", "Registration Failed", MessageBoxButtons.OK, MessageBoxIcon.Error);
FirstPass.Text = "";
ConfPass.Text = "";
FirstPass.Focus();
}
}
private void label6_Click(object sender, EventArgs e)
{
new AHTC_SignIN().Show();
this.Hide();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void groupBox2_Enter(object sender, EventArgs e)
{
}
private void label1_Click(object sender, EventArgs e)
{
}
private void label5_Click(object sender, EventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
UserName.Text = "";
FirstPass.Text = "";
ConfPass.Text = "";
UserName.Focus();
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
}
private void textBox2_TextChanged(object sender, EventArgs e)
{
}
private void label4_Click(object sender, EventArgs e)
{
}
private void username_TextChanged(object sender, EventArgs e)
{
}
private void label3_Click(object sender, EventArgs e)
{
}
private void label2_Click(object sender, EventArgs e)
{
}
private void ChechbxShowPas_CheckedChanged(object sender, EventArgs e)
{
if (CheckbxShowPas.Checked == true)
{
FirstPass.PasswordChar = '\0';
ConfPass.PasswordChar = '\0';
}
else
{
FirstPass.PasswordChar = '•';
ConfPass.PasswordChar = '•';
}
}
private void pictureBox1_Click(object sender, EventArgs e)
{
string message = "Do you want to exit the application?";
string title = "AHTC - Signing off....";
MessageBoxButtons buttons = MessageBoxButtons.YesNo;
DialogResult result = MessageBox.Show(message, title, buttons);
if (result == DialogResult.Yes)
{
Application.Exit();
}
}
}
}