-
Notifications
You must be signed in to change notification settings - Fork 0
/
Sections.cs
61 lines (54 loc) · 1.74 KB
/
Sections.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
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 CMS
{
public partial class Sections : Form
{
SqlConnection connection = new SqlConnection("Data Source=DESKTOP-U0A9B3M;Initial Catalog=CMS1;Integrated Security=True");
public Sections()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
this.Hide();
AdminPanel a = new AdminPanel();
a.Show();
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
private void button2_Click(object sender, EventArgs e)
{
string s_class =comboBox2.Text;
string s_section = comboBox3.Text;
if (s_class == "" || s_section == "")
{
MessageBox.Show("Kindly Fill Both Combo Boxes", "Error");
}
else {
try
{
connection.Open();
SqlDataAdapter s = new SqlDataAdapter("exec sectionalview " + "'" + s_class + "'" + " , " + "'" + s_section + "'", connection);
DataTable a = new DataTable();
s.Fill(a);
dataGridView1.DataSource = a;
connection.Close();
}
catch(Exception ex) {
MessageBox.Show(ex.Message);
connection.Close();
}
}
}
}
}