-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm3.cs
459 lines (368 loc) · 14.7 KB
/
Form3.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
using Bunifu.UI.WinForms;
using Microsoft.VisualBasic;
using Oracle.ManagedDataAccess.Client;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Net;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using static System.Windows.Forms.VisualStyles.VisualStyleElement.ListView;
using System.Xml.Linq;
using Bunifu.UI.WinForms.BunifuTextbox;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
namespace Database_Project_SEM_
{
public partial class Form3 : Form
{
OracleConnection con;
private bool isCollapsed=true;
public string emailtext1 { get; set; }
public Form3()
{
InitializeComponent();
}
private void bunifuPanel1_Click(object sender, EventArgs e)
{
}
private void bunifuPanel3_Click(object sender, EventArgs e)
{
}
private void Form3_Load(object sender, EventArgs e)
{
bunifuDataGridView1.GridColor = Color.White;
bunifuDataGridView1.CellBorderStyle = DataGridViewCellBorderStyle.Single;
string conStr = @"DATA SOURCE=localhost:1521/xe;USER ID=f219298;PASSWORD=123";
con = new OracleConnection(conStr);
GetteacherByEmail();
//
}
private void timer1_Tick(object sender, EventArgs e)
{
//if (isCollapsed)
//{
// PanelDropDown.Height += 10;
// if (PanelDropDown.Size == PanelDropDown.MaximumSize)
// {
// timer1.Stop();
// isCollapsed = false;
// }
//}
//else {
// PanelDropDown.Height -= 10;
// if (PanelDropDown.Size == PanelDropDown.MinimumSize) {
// timer1.Stop();
// isCollapsed = true;
// }
//}
}
public void GetStudentByClass(string c_name)
{
con.Open();
OracleCommand getstudent = con.CreateCommand();
getstudent.CommandText = "SELECT s.* FROM student s, class c, teacher t " +
"WHERE s.c_id = c.c_id AND t.email = '" + emailtext1 + "' AND c.c_name = '" + c_name + "'";
getstudent.CommandType = CommandType.Text;
getstudent.ExecuteNonQuery();
OracleDataAdapter adapter = new OracleDataAdapter(getstudent);
DataTable table = new DataTable();
adapter.Fill(table);
foreach (DataRow row in table.Rows)
{
bunifuDataGridView1.Rows.Add(row["s_id"].ToString(), row["name"].ToString(), row["email"].ToString(), row["contact"].ToString(), row["address"].ToString());
// bunifuTextBox1.Text = row["name"].ToString();
}
con.Close();
}
public void GetteacherByEmail()
{
con.Open();
OracleCommand getstudent = con.CreateCommand();
getstudent.CommandText = "SELECT * FROM teacher where email='" + emailtext1 + "'";
getstudent.CommandType = CommandType.Text;
getstudent.ExecuteNonQuery();
OracleDataAdapter adapter = new OracleDataAdapter(getstudent);
DataTable table = new DataTable();
adapter.Fill(table);
foreach (DataRow row in table.Rows)
{
id.Text = row["t_id"].ToString();
name.Text = row["name"].ToString();
address.Text = row["address"].ToString();
b_group.Text = row["b_group"].ToString();
gender.Text = row["gender"].ToString();
contact.Text = row["contact"].ToString();
r_date.Text = row["r_date"].ToString();
email.Text = row["email"].ToString();
}
con.Close();
}
public void GetStudentinAttend(string c_name)
{
con.Open();
OracleCommand getstudent = con.CreateCommand();
getstudent.CommandText = "SELECT s.* FROM student s, class c, teacher t " +
"WHERE s.c_id = c.c_id AND t.email = '" + emailtext1 + "' AND c.c_name = '" + c_name + "'";
getstudent.CommandType = CommandType.Text;
getstudent.ExecuteNonQuery();
OracleDataAdapter adapter = new OracleDataAdapter(getstudent);
DataTable table = new DataTable();
adapter.Fill(table);
foreach (DataRow row in table.Rows)
{
bunifuDataGridView2.Rows.Add(row["s_id"].ToString(), row["name"].ToString());
}
con.Close();
}
public void GetReportByEmail()
{
con.Open();
OracleCommand getstudent = con.CreateCommand();
getstudent.CommandText = "select s.s_id,s.name,a.n_attend,a.total,a.percent from student s,attendence a,class c,teacher t\r\n" +
"where s.s_id=a.s_id AND s.c_id=c.c_id AND c.t_id=t.t_id AND t.email='" + emailtext1 + "'";
getstudent.CommandType = CommandType.Text;
getstudent.ExecuteNonQuery();
OracleDataAdapter adapter = new OracleDataAdapter(getstudent);
DataTable table = new DataTable();
adapter.Fill(table);
foreach (DataRow row in table.Rows)
{
bunifuDataGridView4.Rows.Add(row["s_id"].ToString(), row["name"].ToString(), row["n_attend"].ToString(), row["total"].ToString(), row["percent"].ToString());
}
con.Close();
}
public DataTable GetClassbyEmail()
{
con.Open();
OracleCommand getclass = con.CreateCommand();
getclass.CommandText = "select c.c_name from class c,teacher t where c.t_id=t.t_id AND t.email='" + emailtext1 + "'";
getclass.CommandType = CommandType.Text;
getclass.ExecuteNonQuery();
OracleDataAdapter adapter = new OracleDataAdapter(getclass);
DataTable table = new DataTable();
adapter.Fill(table);
foreach (DataRow row in table.Rows)
{
bunifuDataGridView3.Rows.Add(row["c_name"].ToString());
comboBox2.Items.Add(row["c_name"].ToString());
}
con.Close();
return table;
}
public void GetClassincombo()
{
con.Open();
OracleCommand getclass = con.CreateCommand();
getclass.CommandText = "select c.c_name from class c,teacher t where c.t_id=t.t_id AND t.email='" + emailtext1 + "'";
getclass.CommandType = CommandType.Text;
getclass.ExecuteNonQuery();
OracleDataAdapter adapter = new OracleDataAdapter(getclass);
DataTable table = new DataTable();
adapter.Fill(table);
foreach (DataRow row in table.Rows)
{
comboBox2.Items.Add(row["c_name"].ToString());
}
con.Close();
}
public void addstudentattend()
{
}
public void addAttendence(string cellvalue, DataGridViewCellEventArgs e)
{
con.Open();
string columnName = bunifuDataGridView2.Columns[e.ColumnIndex].Name;
OracleCommand insertattendence = con.CreateCommand();
insertattendence.CommandText = "update Attendence set n_attend=n_attend + :n_attend where s_id=:s_id";
insertattendence.Parameters.Add("n_attend", OracleDbType.Int32);
insertattendence.Parameters.Add("s_id", OracleDbType.Int32);
DataGridViewRow row = bunifuDataGridView2.Rows[e.RowIndex];
if (cellvalue == "P")
{
row.Cells[columnName].Value = 1;
}
else if (cellvalue == "A")
{
row.Cells[columnName].Value = 0;
}
insertattendence.Parameters["n_attend"].Value = row.Cells[columnName].Value;
insertattendence.Parameters["s_id"].Value = row.Cells["Rollno"].Value;
insertattendence.ExecuteNonQuery();
MessageBox.Show("Attendance Added");
con.Close();
}
private void bunifuButton3_Click(object sender, EventArgs e)
{
//timer1.Start();
dropdown();
}
private void bunifuButton4_Click(object sender, EventArgs e)
{
tabPage1.Hide();
tabPage3.Hide();
tabPage4.Hide();
tabPage5.Hide();
tabPage2.Show();
GetClassincombo();
}
private void bunifuButton1_Click(object sender, EventArgs e)
{
tabPage3.Hide();
tabPage4.Hide();
tabPage5.Hide();
tabPage2.Hide();
tabPage1.Show();
GetteacherByEmail();
}
private void dropdown()
{
if (isCollapsed)
{
PanelDropDown.Height = PanelDropDown.MaximumSize.Height;
}
else
{
PanelDropDown.Height = PanelDropDown.MinimumSize.Height;
}
isCollapsed = !isCollapsed;
}
private void label2_Click(object sender, EventArgs e)
{
}
private void tabPage2_Click(object sender, EventArgs e)
{
}
private void bunifuLabel1_Click(object sender, EventArgs e)
{
}
private void bunifuButton7_Click(object sender, EventArgs e)
{
Bunifu.UI.WinForms.BunifuDataGridView dataGridView = bunifuDataGridView2; // Replace "myBunifuDataGridView" with the actual name of your DataGridView control
string columnName = Interaction.InputBox("Enter Date:", "Add Column"); // Prompt the user for the column name
if (!string.IsNullOrEmpty(columnName))
{
DataGridViewTextBoxColumn column = new DataGridViewTextBoxColumn(); // Create a new column
column.HeaderText = columnName; // Set the column header text to the entered column name
dataGridView.Columns.Add(column); // Add the column to the DataGridView control
}
}
private void label3_Click(object sender, EventArgs e)
{
}
private void bunifuSeparator4_Click(object sender, EventArgs e)
{
}
private void bunifuButton2_Click(object sender, EventArgs e)
{
tabPage2.Hide();
tabPage4.Hide();
tabPage3.Hide();
tabPage1.Hide();
tabPage5.Show();
DataTable table=GetClassbyEmail();
foreach (DataRow row in table.Rows)
{
comboBox1.Items.Add(row["c_name"].ToString());
}
}
private void bunifuButton5_Click(object sender, EventArgs e)
{
tabPage2.Hide();
tabPage4.Hide();
tabPage1.Hide();
tabPage5.Hide();
tabPage3.Show();
GetClassbyEmail();
}
private void bunifuButton6_Click(object sender, EventArgs e)
{
tabPage2.Hide();
tabPage3.Hide();
tabPage1.Hide();
tabPage5.Hide();
tabPage4.Show();
GetReportByEmail();
}
private void bunifuDataGridView3_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
private void tabPage5_Click(object sender, EventArgs e)
{
}
private void comboBox1_SelectedIndexChanged_1(object sender, EventArgs e)
{
string selectedValue = comboBox1.SelectedItem.ToString();
bunifuDataGridView1.Rows.Clear();
GetStudentByClass(selectedValue);
}
private void bunifuDataGridView2_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
private void bunifuDataGridView2_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
// Check if the edited cell is in the newly created column
if (e.ColumnIndex == bunifuDataGridView2.Columns.Count - 1)
{
// Get the edited cell's value
string cellValue = bunifuDataGridView2.Rows[e.RowIndex].Cells[e.ColumnIndex].Value.ToString();
addAttendence(cellValue, e);
}
}
private void bunifuButton8_Click(object sender, EventArgs e)
{
}
private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
{
string selectedValue = comboBox2.SelectedItem.ToString();
bunifuDataGridView1.Rows.Clear();
GetStudentinAttend(selectedValue);
}
private void tabPage4_Click(object sender, EventArgs e)
{
}
private void bunifuDataGridView4_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
}
private void bunifuTextBox4_TextChanged(object sender, EventArgs e)
{
}
private void r_date_TextChanged(object sender, EventArgs e)
{
}
private void email_TextChanged(object sender, EventArgs e)
{
}
private void tabPage1_Click(object sender, EventArgs e)
{
}
private void bunifuButton7_Click_1(object sender, EventArgs e)
{
Bunifu.UI.WinForms.BunifuDataGridView dataGridView = bunifuDataGridView2; // Replace "myBunifuDataGridView" with the actual name of your DataGridView control
string columnName = Interaction.InputBox("Enter Date:", "Add Column"); // Prompt the user for the column name
if (!string.IsNullOrEmpty(columnName))
{
DataGridViewTextBoxColumn column = new DataGridViewTextBoxColumn(); // Create a new column
column.HeaderText = columnName; // Set the column header text to the entered column name
dataGridView.Columns.Add(column); // Add the column to the DataGridView control
}
}
private void bunifuLabel10_Click(object sender, EventArgs e)
{
this.Hide(); // hide the current form
Form1 form1 = new Form1(); // create a new instance of Form1
form1.Show(); // show Form1
}
private void bunifuLabel10_MouseEnter(object sender, EventArgs e)
{
bunifuLabel10.ForeColor = Color.Gray;
}
private void bunifuLabel10_MouseLeave(object sender, EventArgs e)
{
bunifuLabel10.ForeColor = Color.Transparent;
}
}
}