-
Notifications
You must be signed in to change notification settings - Fork 0
/
Form10.cs
121 lines (96 loc) · 3.23 KB
/
Form10.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
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 SirketProjem
{
public partial class Form10 : Form
{
public Form10()
{
InitializeComponent();
}
SqlConnection baglan = new SqlConnection(@"Server=LAPTOP-I1EN423K\MSSQLSERVER01;Initial Catalog=TravelTraffik ;Integrated Security=True;");
private void Form10_Load(object sender, EventArgs e)
{
try
{
baglan.Open();
string querry = "SELECT * FROM MalListesi";
SqlCommand cmd = new SqlCommand(querry, baglan);
cmd.ExecuteNonQuery();
}
catch (Exception ex)
{
MessageBox.Show("Bağlantı hatası oluştu lütfen Tekrar deneyiniz " + ex);
}
finally
{
baglan.Close();
}
try
{
baglan.Open();
string querry = " SELECT DISTINCT MusteriAdi , MusteriSoyadi FROM MalListesi ";
SqlCommand cmd = new SqlCommand(querry, baglan);
SqlDataReader reader = cmd.ExecuteReader();
while (reader.Read())
{
string MusteriAdi = reader["MusteriAdi"].ToString();
string MusteriSoyadi = reader["MusteriSoyadi"].ToString();
comboBox1.Items.Add(MusteriAdi);
}
reader.Close();
}
catch (Exception ex)
{
MessageBox.Show(" Veriler getirilemedi! " + ex);
}
finally
{
baglan.Close();
}
}
private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
Form3 Form3 = new Form3();
Form3.Show();
this.Hide();
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
private void BtnGosterF10_Click(object sender, EventArgs e)
{
string secilmisDeger = comboBox1.SelectedItem.ToString();
DateTime dateTime = dateTimePicker1.Value;
string formattedDate = dateTime.ToString("yyyy-MM-dd");
baglan.Open();
string querry = "SELECT * FROM MalListesi WHERE MusteriAdi = '" + secilmisDeger + "' AND Tarih = '" + formattedDate + "' ";
SqlCommand cmd = new SqlCommand(querry, baglan);
SqlDataReader reader = cmd.ExecuteReader();
DataTable dt = new DataTable();
dt.Load(reader);
dataGridView1.DataSource = dt;
baglan.Close();
}
private void BtnF11Goster_Click(object sender, EventArgs e)
{
Form11 Form11 = new Form11();
Form11.Show();
this.Hide();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
}
}
}