-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFrmKulüpİşlemleri.cs
160 lines (159 loc) · 5.73 KB
/
FrmKulüpİşlemleri.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Data.SqlClient;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace E_Okul_Sistemi
{
public partial class FrmKulüpİşlemleri : Form
{
public FrmKulüpİşlemleri()
{
InitializeComponent();
}
//Sql Connection Baglantısı
Sql bgl = new Sql();
void Listele()
{
//Kulüpler tablosunu listeleme
SqlDataAdapter da = new SqlDataAdapter("Select * from Kulüpler1", bgl.baglantı());
DataTable dt = new DataTable();
da.Fill(dt);
dataGridView1.DataSource = dt;
}
void Ekleme()
{
try
{
if (textbxKulüpad.Text!="")
{
if (textbxKulüpad.Text.Length>3)
{
//Eger Ad alanı boş degilse ve karakter uzunlugu 3 den büyükse Ekleme yapma
SqlCommand kmt = new SqlCommand("insert into Kulüpler1 (KULÜPAD) values (@p1) ", bgl.baglantı());
kmt.Parameters.AddWithValue("@p1", textbxKulüpad.Text);
kmt.ExecuteNonQuery();
MessageBox.Show("Kulüp Listeye Eklendi", "YES E-Okul Sistemi", MessageBoxButtons.OK, MessageBoxIcon.Information);
bgl.baglantı().Close();
Listele();
}
else
{
MessageBox.Show("Hatalı Deger Girişi Alanları Dogru Doldurun", "E-Okul Sistemi", MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
else
{
MessageBox.Show("Lütfen Boş Alan Bırakmayınız!!!");
}
}
catch (Exception hata)
{
MessageBox.Show(hata.Message.ToString());
}
bgl.baglantı().Close();
}
void Güncelleme()
{
try
{
if (textbxKulüpad.Text!="")
{
SqlCommand kmt = new SqlCommand("Update Kulüpler1 set KULÜPAD=@p1 where KULÜPID=@p2", bgl.baglantı());
kmt.Parameters.AddWithValue("@p1", textbxKulüpad.Text);
kmt.Parameters.AddWithValue("@p2", textbxkulüpıd.Text);
kmt.ExecuteNonQuery();
MessageBox.Show("Kulüp Listesi Güncellendi", "E-Okul Sistemi", MessageBoxButtons.OK, MessageBoxIcon.Asterisk);
bgl.baglantı().Close();
Listele();
textbxkulüpıd.Clear();
textbxKulüpad.Clear();
}
else
{
MessageBox.Show("Hatalı Deger girişi", "Uyarı", MessageBoxButtons.OK, MessageBoxIcon.Stop);
}
}
catch (Exception hata)
{
MessageBox.Show(hata.Message);
}
}
void Silme()
{
try
{
if (textbxkulüpıd.Text != "")
{
SqlCommand slkmt = new SqlCommand("Delete From Kulüpler1 where KULÜPID=@p1", bgl.baglantı());
slkmt.Parameters.AddWithValue("@p1", textbxkulüpıd.Text);
slkmt.ExecuteNonQuery();
MessageBox.Show("Kulüp listeden silindi", "YES E-Okul Sistemi", MessageBoxButtons.OK, MessageBoxIcon.Hand);
Listele();
textbxkulüpıd.Clear();
textbxKulüpad.Clear();
}
else
{
MessageBox.Show("Hatalı Deger girişi", "Uyarı", MessageBoxButtons.OK, MessageBoxIcon.Stop);
}
bgl.baglantı().Close();
}
catch (Exception hata)
{
MessageBox.Show(hata.Message);
}
}
private void button1_Click(object sender, EventArgs e)
{
Listele();
}
private void FrmKulüpİşlemleri_Load(object sender, EventArgs e)
{
Listele();
}
private void buttonEkle_Click(object sender, EventArgs e)
{
Ekleme();
}
private void dataGridView1_CellClick(object sender, DataGridViewCellEventArgs e)
{
textbxkulüpıd.Text = dataGridView1.Rows[e.RowIndex].Cells[0].Value.ToString();
textbxKulüpad.Text = dataGridView1.Rows[e.RowIndex].Cells[1].Value.ToString();
}
private void pictureBox2_Click(object sender, EventArgs e)
{
DialogResult tepki = new DialogResult();
tepki = MessageBox.Show("Uygulamadan Ayrılıyorsunuz?", "YES E-Okul Uygulaması", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
if (tepki==DialogResult.OK)
{
Application.Exit();
}
}
private void pictureBox2_MouseLeave(object sender, EventArgs e)
{
pictureBox2.BackColor = Color.Transparent;
}
private void pictureBox2_MouseEnter(object sender, EventArgs e)
{
pictureBox2.BackColor = Color.LightYellow;
}
private void ButtonSil_Click(object sender, EventArgs e)
{
Silme();
}
private void buttonGüncelle_Click(object sender, EventArgs e)
{
Güncelleme();
}
private void pictureBox8_Click(object sender, EventArgs e)
{
this.Hide();
}
}
}