-
Notifications
You must be signed in to change notification settings - Fork 0
/
attendance.cs
128 lines (106 loc) · 3.2 KB
/
attendance.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
// Attendance Register system
// created: 13/08/19
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;
namespace Attendace1v1
{
public partial class Register : Form
{
public Register()
{
InitializeComponent();
}
// Number of Students
int noStudents = 6;
private void Form1_Load(object sender, EventArgs e)
{
// Main cbox
comboAttend.Items.Add("P - Present");
comboAttend.Items.Add("L - Late");
comboAttend.Items.Add("A - Absent");
// Populates all cboxs
for (int i = 1; i <= noStudents; i++)
{
ComboBox comboBox = (ComboBox)this.Controls.Find
(string.Format("comboBox{0}", i), true)[0];
//call method to fill cbox
ComboBoxFill(comboBox);
}
}
// Method to fill all cboxs
private void ComboBoxFill(ComboBox comboBox)
{
comboBox.Items.Add("P - Present");
comboBox.Items.Add("L - Late");
comboBox.Items.Add("A - Absent");
}
private void FillPresent(ComboBox comboBox)
{
comboBox.Text = "P - Present";
}
private void FillLate(ComboBox comboBox)
{
comboBox.Text = "L - Late";
}
private void FillAbsent(ComboBox comboBox)
{
comboBox.Text = "A - Absent";
}
private void FillClear(ComboBox comboBox)
{
comboBox.Text = "";
}
// Fills all ComboBoxes Based on main combobox
private void btnCombo_Click(object sender, EventArgs e)
{
for (int i = 1; i <=noStudents; i++)
{
ComboBox comboBox = (ComboBox)this.Controls.Find
(string.Format("comboBox{0}", i), true)[0];
// fill present if nothing is selected as well
if (comboAttend.Text == "P - Present" || comboAttend.Text == "")
{
FillPresent(comboBox);
}
else if (comboAttend.Text == "L - Late")
{
FillLate(comboBox);
}
else
{
FillAbsent(comboBox);
}
}
}
// Save
private void btnSave_Click(object sender, EventArgs e)
{
}
// visual test
private void Test()
{
lblHeaderStudent.Text = "123";
}
// change back to when first openned app
private void setToDefault()
{
for (int i = 1; i <= noStudents; i++)
{
ComboBox comboBox = (ComboBox)this.Controls.Find
(string.Format("comboBox{0}", i), true)[0];
FillClear(comboBox);
}
}
private void dateTimePicker1_ValueChanged(object sender, EventArgs e)
{
setToDefault();
}
}
}