├── .gitattributes ├── README.md └── rfid attendance system ├── Arduino code └── RFID_BASED_ATTENDANCE_SYSTEM_HIGH_VOLTAGES.ino ├── GUI └── login_design5 │ ├── login_design.sln │ ├── login_design.v12.suo │ └── login_design │ ├── App.config │ ├── Atndnce.Designer.cs │ ├── Atndnce.cs │ ├── Atndnce.resx │ ├── Attendance.cs │ ├── Fee Notification.Designer.cs │ ├── Fee Notification.cs │ ├── Fee Notification.resx │ ├── Fee.Designer.cs │ ├── Fee.cs │ ├── Fee.resx │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Main Menu.Designer.cs │ ├── Main Menu.cs │ ├── Main Menu.resx │ ├── Marks_add.Designer.cs │ ├── Marks_add.cs │ ├── Marks_add.resx │ ├── Program.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── DataSources │ │ ├── StudentDataSet.TableDataTable.datasource │ │ ├── login_design.Properties.Resources.datasource │ │ ├── login_design.Properties.Settings.datasource │ │ ├── login_design.StudentDataSetTableAdapters.AttendanceTableAdapter.datasource │ │ ├── login_design.StudentDataSetTableAdapters.TableAdapterManager+UpdateOrderOption.datasource │ │ ├── login_design.StudentDataSetTableAdapters.TableAdapterManager.datasource │ │ ├── login_design.StudentDataSetTableAdapters.TableTableAdapter.datasource │ │ ├── login_design.timetableTableAdapters.AttendanceTableAdapter.datasource │ │ ├── login_design.timetableTableAdapters.TableAdapterManager+UpdateOrderOption.datasource │ │ ├── login_design.timetableTableAdapters.TableAdapterManager.datasource │ │ ├── login_design.timetableTableAdapters.TableTableAdapter.datasource │ │ └── login_design.timetableTableAdapters.TimeTableTableAdapter.datasource │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Student.Designer.cs │ ├── Student.cs │ ├── Student.mdf │ ├── Student.resx │ ├── StudentDataSet.Designer.cs │ ├── StudentDataSet.cs │ ├── StudentDataSet.xsc │ ├── StudentDataSet.xsd │ ├── StudentDataSet.xss │ ├── StudentDataSet1.Designer.cs │ ├── StudentDataSet1.xsc │ ├── StudentDataSet1.xsd │ ├── StudentDataSet1.xss │ ├── Student_log.ldf │ ├── Upload Data.Designer.cs │ ├── Upload Data.cs │ ├── Upload Data.resx │ ├── Upload.Designer.cs │ ├── Upload.cs │ ├── Upload.resx │ ├── View Data.Cs │ ├── View Data.Designer.Cs │ ├── View Data.resx │ ├── View Marks.Designer.cs │ ├── View Marks.cs │ ├── View Marks.resx │ ├── View.Designer.cs │ ├── View.cs │ ├── View.resx │ ├── bin │ └── Debug │ │ ├── Student.mdf │ │ ├── Student_log.ldf │ │ ├── login_design - Shortcut.lnk │ │ ├── login_design.exe │ │ ├── login_design.exe.config │ │ ├── login_design.pdb │ │ ├── login_design.vshost.exe │ │ ├── login_design.vshost.exe.config │ │ └── login_design.vshost.exe.manifest │ ├── login_design.csproj │ ├── login_design.csproj.user │ ├── obj │ └── Debug │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TempPE │ │ ├── StudentDataSet.Designer.cs.dll │ │ ├── StudentDataSet1.Designer.cs.dll │ │ └── timetable.Designer.cs.dll │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── login_design.Assignment.resources │ │ ├── login_design.Atndnce.resources │ │ ├── login_design.Fee.resources │ │ ├── login_design.Form1.resources │ │ ├── login_design.Main_Menu.resources │ │ ├── login_design.Properties.Resources.resources │ │ ├── login_design.Student.resources │ │ ├── login_design.Upload.resources │ │ ├── login_design.Upload_Data.resources │ │ ├── login_design.View.resources │ │ ├── login_design.View_Data.resources │ │ ├── login_design.View_Marks.resources │ │ ├── login_design.csproj.FileListAbsolute.txt │ │ ├── login_design.csproj.GenerateResource.Cache │ │ ├── login_design.csprojResolveAssemblyReference.cache │ │ ├── login_design.exe │ │ ├── login_design.pdb │ │ └── login_design.upload_marks.resources │ ├── timetable.Designer.cs │ ├── timetable.xsc │ ├── timetable.xsd │ ├── timetable.xss │ ├── upload marks.Designer.cs │ ├── upload marks.cs │ └── upload marks.resx └── project file ├── RFID(1).docx └── RFID.docx /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Rfid Based Attendance system 2 | 3 | video link : https://youtu.be/eJkPR6kiFdE 4 | -------------------------------------------------------------------------------- /rfid attendance system/Arduino code/RFID_BASED_ATTENDANCE_SYSTEM_HIGH_VOLTAGES.ino: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | SoftwareSerial mySerial(6, 3); 5 | char msg; 6 | char call; 7 | String c; 8 | 9 | #define RST_PIN 5 10 | #define SS_PIN 10 11 | MFRC522 mfrc522(SS_PIN, RST_PIN); 12 | 13 | void setup() 14 | { 15 | Serial.begin(9600); 16 | mySerial.begin(9600); 17 | SPI.begin(); 18 | mfrc522.PCD_Init(); 19 | } 20 | 21 | void loop() { 22 | RfidScan(); 23 | if(Serial.available()>0) 24 | { 25 | c=Serial.readString(); 26 | sendMessage(c); 27 | } 28 | 29 | } 30 | 31 | void dump_byte_array(byte *buffer, byte bufferSize) { 32 | for (byte i = 0; i < bufferSize; i++) { 33 | Serial.print(buffer[i] < 0x10 ? " 0" : " "); 34 | Serial.print(buffer[i], DEC); 35 | 36 | 37 | } 38 | Serial.println(); 39 | 40 | 41 | delay(1000); 42 | } 43 | 44 | void RfidScan() 45 | { 46 | if ( ! mfrc522.PICC_IsNewCardPresent()) 47 | return; 48 | 49 | if ( ! mfrc522.PICC_ReadCardSerial()) 50 | return; 51 | dump_byte_array(mfrc522.uid.uidByte, mfrc522.uid.size); 52 | } 53 | 54 | void sendMessage(String a) 55 | { 56 | //String a; 57 | // a=Serial.readString(); 58 | // Serial.println(a); 59 | String d = "AT+CMGS=\"" + a + '"' + "\r"; 60 | 61 | mySerial.println("AT+CMGF=1"); //Sets the GSM Module in Text Mode 62 | delay(1000); // Delay of 1000 milli seconds or 1 second 63 | //mySerial.println("AT+CMGS=\""); // Replace x with mobile number 64 | //mySerial.print(c); 65 | mySerial.print(d); 66 | delay(1000); 67 | mySerial.println("your child is present today");// The SMS text you want to send 68 | 69 | delay(100); 70 | mySerial.println((char)26);// ASCII code of CTRL+Z 71 | delay(1000); 72 | 73 | 74 | } 75 | 76 | 77 | 78 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 2013 4 | VisualStudioVersion = 12.0.21005.1 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "login_design", "login_design\login_design.csproj", "{AB49DA33-EA0F-447B-8D9A-EA548C24CD82}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {AB49DA33-EA0F-447B-8D9A-EA548C24CD82}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {AB49DA33-EA0F-447B-8D9A-EA548C24CD82}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {AB49DA33-EA0F-447B-8D9A-EA548C24CD82}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {AB49DA33-EA0F-447B-8D9A-EA548C24CD82}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | EndGlobal 23 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design.v12.suo -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Atndnce.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace login_design 12 | { 13 | public partial class Atndnce : Form 14 | { 15 | public Atndnce() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void attendanceBindingNavigatorSaveItem_Click(object sender, EventArgs e) 21 | { 22 | this.Validate(); 23 | this.attendanceBindingSource.EndEdit(); 24 | this.tableAdapterManager.UpdateAll(this.studentDataSet); 25 | 26 | } 27 | 28 | private void Atndnce_Load(object sender, EventArgs e) 29 | { 30 | // TODO: This line of code loads data into the 'studentDataSet.Table' table. You can move, or remove it, as needed. 31 | // this.tableTableAdapter.Fill(this.studentDataSet.Table); 32 | // TODO: This line of code loads data into the 'studentDataSet.Attendance' table. You can move, or remove it, as needed. 33 | this.attendanceTableAdapter.Fill(this.studentDataSet.Attendance); 34 | 35 | } 36 | 37 | private void button1_Click(object sender, EventArgs e) 38 | { 39 | this.Hide(); 40 | View vv = new View(); 41 | vv.Show(); 42 | } 43 | 44 | private void dateToolStripButton_Click(object sender, EventArgs e) 45 | { 46 | try 47 | { 48 | this.attendanceTableAdapter.Date(this.studentDataSet.Attendance, dateToolStripTextBox.Text); 49 | } 50 | catch (System.Exception ex) 51 | { 52 | System.Windows.Forms.MessageBox.Show(ex.Message); 53 | } 54 | 55 | } 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Atndnce.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 153, 17 125 | 126 | 127 | 344, 17 128 | 129 | 130 | 530, 17 131 | 132 | 133 | 701, 17 134 | 135 | 136 | 137 | 138 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 139 | wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC 140 | pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++ 141 | Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ 142 | /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA 143 | zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/ 144 | IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E 145 | rkJggg== 146 | 147 | 148 | 149 | 150 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 151 | wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC 152 | DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC 153 | rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV 154 | i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG 155 | 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG 156 | QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX 157 | bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII= 158 | 159 | 160 | 161 | 162 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 163 | wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77 164 | wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0 165 | v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg 166 | UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA 167 | Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu 168 | lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII= 169 | 170 | 171 | 172 | 173 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 174 | wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w 175 | 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f 176 | Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+ 177 | 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC 178 | 179 | 180 | 181 | 182 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 183 | wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78 184 | n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI 185 | N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f 186 | oAc0QjgAAAAASUVORK5CYII= 187 | 188 | 189 | 190 | 191 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 192 | wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+// 193 | h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B 194 | twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA 195 | kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG 196 | WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9 197 | 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg== 198 | 199 | 200 | 201 | 202 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 203 | wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo 204 | dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII= 205 | 206 | 207 | 208 | 17, 56 209 | 210 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Attendance.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace login_design 12 | { 13 | public partial class Attendance : Form 14 | { 15 | public Attendance() 16 | { 17 | // InitializeComponent(); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Fee Notification.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace login_design 2 | { 3 | partial class Assignment 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | System.Windows.Forms.Label phoneLabel; 33 | this.studentDataSet_TableDataTableBindingSource = new System.Windows.Forms.BindingSource(this.components); 34 | this.studentDataSet = new login_design.StudentDataSet(); 35 | this.tableBindingSource = new System.Windows.Forms.BindingSource(this.components); 36 | this.tableTableAdapter = new login_design.StudentDataSetTableAdapters.TableTableAdapter(); 37 | this.tableAdapterManager = new login_design.StudentDataSetTableAdapters.TableAdapterManager(); 38 | this.button1 = new System.Windows.Forms.Button(); 39 | this.button3 = new System.Windows.Forms.Button(); 40 | this.phoneTextBox = new System.Windows.Forms.TextBox(); 41 | this.fillBy9ToolStrip = new System.Windows.Forms.ToolStrip(); 42 | this.rollToolStripLabel = new System.Windows.Forms.ToolStripLabel(); 43 | this.rollToolStripTextBox = new System.Windows.Forms.ToolStripTextBox(); 44 | this.fillBy9ToolStripButton = new System.Windows.Forms.ToolStripButton(); 45 | this.serialPort1 = new System.IO.Ports.SerialPort(this.components); 46 | phoneLabel = new System.Windows.Forms.Label(); 47 | ((System.ComponentModel.ISupportInitialize)(this.studentDataSet_TableDataTableBindingSource)).BeginInit(); 48 | ((System.ComponentModel.ISupportInitialize)(this.studentDataSet)).BeginInit(); 49 | ((System.ComponentModel.ISupportInitialize)(this.tableBindingSource)).BeginInit(); 50 | this.fillBy9ToolStrip.SuspendLayout(); 51 | this.SuspendLayout(); 52 | // 53 | // phoneLabel 54 | // 55 | phoneLabel.AutoSize = true; 56 | phoneLabel.Location = new System.Drawing.Point(70, 78); 57 | phoneLabel.Name = "phoneLabel"; 58 | phoneLabel.Size = new System.Drawing.Size(41, 13); 59 | phoneLabel.TabIndex = 14; 60 | phoneLabel.Text = "Phone:"; 61 | // 62 | // studentDataSet_TableDataTableBindingSource 63 | // 64 | this.studentDataSet_TableDataTableBindingSource.DataSource = typeof(login_design.StudentDataSet.TableDataTable); 65 | // 66 | // studentDataSet 67 | // 68 | this.studentDataSet.DataSetName = "StudentDataSet"; 69 | this.studentDataSet.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema; 70 | // 71 | // tableBindingSource 72 | // 73 | this.tableBindingSource.DataMember = "Table"; 74 | this.tableBindingSource.DataSource = this.studentDataSet; 75 | // 76 | // tableTableAdapter 77 | // 78 | this.tableTableAdapter.ClearBeforeFill = true; 79 | // 80 | // tableAdapterManager 81 | // 82 | this.tableAdapterManager.AttendanceTableAdapter = null; 83 | this.tableAdapterManager.BackupDataSetBeforeUpdate = false; 84 | this.tableAdapterManager.TableTableAdapter = this.tableTableAdapter; 85 | this.tableAdapterManager.UpdateOrder = login_design.StudentDataSetTableAdapters.TableAdapterManager.UpdateOrderOption.InsertUpdateDelete; 86 | // 87 | // button1 88 | // 89 | this.button1.Location = new System.Drawing.Point(201, 163); 90 | this.button1.Name = "button1"; 91 | this.button1.Size = new System.Drawing.Size(75, 23); 92 | this.button1.TabIndex = 14; 93 | this.button1.Text = "Back"; 94 | this.button1.UseVisualStyleBackColor = true; 95 | this.button1.Click += new System.EventHandler(this.button1_Click); 96 | // 97 | // button3 98 | // 99 | this.button3.Location = new System.Drawing.Point(100, 120); 100 | this.button3.Name = "button3"; 101 | this.button3.Size = new System.Drawing.Size(75, 23); 102 | this.button3.TabIndex = 11; 103 | this.button3.Text = "Send"; 104 | this.button3.UseVisualStyleBackColor = true; 105 | this.button3.Click += new System.EventHandler(this.button3_Click); 106 | // 107 | // phoneTextBox 108 | // 109 | this.phoneTextBox.DataBindings.Add(new System.Windows.Forms.Binding("Text", this.tableBindingSource, "Phone", true)); 110 | this.phoneTextBox.Location = new System.Drawing.Point(117, 75); 111 | this.phoneTextBox.Name = "phoneTextBox"; 112 | this.phoneTextBox.Size = new System.Drawing.Size(100, 20); 113 | this.phoneTextBox.TabIndex = 15; 114 | // 115 | // fillBy9ToolStrip 116 | // 117 | this.fillBy9ToolStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 118 | this.rollToolStripLabel, 119 | this.rollToolStripTextBox, 120 | this.fillBy9ToolStripButton}); 121 | this.fillBy9ToolStrip.Location = new System.Drawing.Point(0, 0); 122 | this.fillBy9ToolStrip.Name = "fillBy9ToolStrip"; 123 | this.fillBy9ToolStrip.Size = new System.Drawing.Size(302, 25); 124 | this.fillBy9ToolStrip.TabIndex = 16; 125 | this.fillBy9ToolStrip.Text = "fillBy9ToolStrip"; 126 | // 127 | // rollToolStripLabel 128 | // 129 | this.rollToolStripLabel.Name = "rollToolStripLabel"; 130 | this.rollToolStripLabel.Size = new System.Drawing.Size(27, 22); 131 | this.rollToolStripLabel.Text = "roll:"; 132 | // 133 | // rollToolStripTextBox 134 | // 135 | this.rollToolStripTextBox.Name = "rollToolStripTextBox"; 136 | this.rollToolStripTextBox.Size = new System.Drawing.Size(100, 25); 137 | // 138 | // fillBy9ToolStripButton 139 | // 140 | this.fillBy9ToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Text; 141 | this.fillBy9ToolStripButton.Name = "fillBy9ToolStripButton"; 142 | this.fillBy9ToolStripButton.Size = new System.Drawing.Size(46, 22); 143 | this.fillBy9ToolStripButton.Text = "Search"; 144 | this.fillBy9ToolStripButton.Click += new System.EventHandler(this.fillBy9ToolStripButton_Click); 145 | // 146 | // serialPort1 147 | // 148 | this.serialPort1.PortName = "COM5"; 149 | // 150 | // Assignment 151 | // 152 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 153 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 154 | this.AutoScroll = true; 155 | this.ClientSize = new System.Drawing.Size(302, 202); 156 | this.Controls.Add(this.fillBy9ToolStrip); 157 | this.Controls.Add(phoneLabel); 158 | this.Controls.Add(this.phoneTextBox); 159 | this.Controls.Add(this.button1); 160 | this.Controls.Add(this.button3); 161 | this.Name = "Assignment"; 162 | this.Text = "Fee Notification"; 163 | this.Load += new System.EventHandler(this.Assignment_Load); 164 | ((System.ComponentModel.ISupportInitialize)(this.studentDataSet_TableDataTableBindingSource)).EndInit(); 165 | ((System.ComponentModel.ISupportInitialize)(this.studentDataSet)).EndInit(); 166 | ((System.ComponentModel.ISupportInitialize)(this.tableBindingSource)).EndInit(); 167 | this.fillBy9ToolStrip.ResumeLayout(false); 168 | this.fillBy9ToolStrip.PerformLayout(); 169 | this.ResumeLayout(false); 170 | this.PerformLayout(); 171 | 172 | } 173 | 174 | #endregion 175 | 176 | private System.Windows.Forms.BindingSource studentDataSet_TableDataTableBindingSource; 177 | private StudentDataSet studentDataSet; 178 | private System.Windows.Forms.BindingSource tableBindingSource; 179 | private StudentDataSetTableAdapters.TableTableAdapter tableTableAdapter; 180 | private StudentDataSetTableAdapters.TableAdapterManager tableAdapterManager; 181 | private System.Windows.Forms.Button button1; 182 | private System.Windows.Forms.Button button3; 183 | private System.Windows.Forms.TextBox phoneTextBox; 184 | private System.Windows.Forms.ToolStrip fillBy9ToolStrip; 185 | private System.Windows.Forms.ToolStripLabel rollToolStripLabel; 186 | private System.Windows.Forms.ToolStripTextBox rollToolStripTextBox; 187 | private System.Windows.Forms.ToolStripButton fillBy9ToolStripButton; 188 | private System.IO.Ports.SerialPort serialPort1; 189 | } 190 | } -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Fee Notification.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Windows.Forms; 9 | using System.Net; 10 | using System.Net.Mail; 11 | 12 | namespace login_design 13 | { 14 | public partial class Assignment : Form 15 | { 16 | public Assignment() 17 | { 18 | InitializeComponent(); 19 | serialPort1.Open(); 20 | } 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | private void button3_Click(object sender, EventArgs e) 31 | { 32 | try 33 | { 34 | String abc = phoneTextBox.Text.ToString(); 35 | serialPort1.Write(abc); 36 | MessageBox.Show("Message Send"); 37 | 38 | } 39 | catch (Exception ex) 40 | { 41 | MessageBox.Show(ex.Message); 42 | } 43 | } 44 | 45 | private void Assignment_Load(object sender, EventArgs e) 46 | { 47 | // TODO: This line of code loads data into the 'studentDataSet.Table' table. You can move, or remove it, as needed. 48 | this.tableTableAdapter.Fill(this.studentDataSet.Table); 49 | 50 | } 51 | 52 | private void button1_Click(object sender, EventArgs e) 53 | { 54 | this.Hide(); 55 | Upload u = new Upload(); 56 | u.Show(); 57 | serialPort1.Close(); 58 | } 59 | 60 | private void fillBy9ToolStripButton_Click(object sender, EventArgs e) 61 | { 62 | try 63 | { 64 | this.tableTableAdapter.FillBy9(this.studentDataSet.Table, rollToolStripTextBox.Text); 65 | } 66 | catch (System.Exception ex) 67 | { 68 | System.Windows.Forms.MessageBox.Show(ex.Message); 69 | } 70 | 71 | } 72 | 73 | 74 | 75 | } 76 | 77 | 78 | 79 | 80 | } 81 | 82 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Fee Notification.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | False 122 | 123 | 124 | 17, 17 125 | 126 | 127 | 321, 17 128 | 129 | 130 | 457, 17 131 | 132 | 133 | 615, 17 134 | 135 | 136 | 17, 56 137 | 138 | 139 | 188, 56 140 | 141 | 142 | 321, 56 143 | 144 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Fee.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace login_design 12 | { 13 | public partial class Fee : Form 14 | { 15 | public Fee() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void feeBindingNavigatorSaveItem_Click(object sender, EventArgs e) 21 | { 22 | this.Validate(); 23 | this.feeBindingSource.EndEdit(); 24 | this.tableAdapterManager.UpdateAll(this.studentDataSet1); 25 | 26 | } 27 | 28 | private void Fee_Load(object sender, EventArgs e) 29 | { 30 | // TODO: This line of code loads data into the 'studentDataSet1.Fee' table. You can move, or remove it, as needed. 31 | this.feeTableAdapter.Fill(this.studentDataSet1.Fee); 32 | 33 | } 34 | 35 | private void fillByToolStripButton_Click(object sender, EventArgs e) 36 | { 37 | try 38 | { 39 | this.feeTableAdapter.FillBy(this.studentDataSet1.Fee, classToolStripTextBox.Text); 40 | } 41 | catch (System.Exception ex) 42 | { 43 | System.Windows.Forms.MessageBox.Show(ex.Message); 44 | } 45 | 46 | } 47 | 48 | private void button2_Click(object sender, EventArgs e) 49 | { 50 | this.Hide(); 51 | Upload up = new Upload(); 52 | up.Show(); 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Fee.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 159, 17 125 | 126 | 127 | 306, 17 128 | 129 | 130 | 448, 17 131 | 132 | 133 | 619, 17 134 | 135 | 136 | 137 | 138 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 139 | wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC 140 | pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++ 141 | Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ 142 | /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA 143 | zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/ 144 | IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E 145 | rkJggg== 146 | 147 | 148 | 149 | 150 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 151 | wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC 152 | DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC 153 | rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV 154 | i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG 155 | 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG 156 | QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX 157 | bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII= 158 | 159 | 160 | 161 | 162 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 163 | wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77 164 | wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0 165 | v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg 166 | UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA 167 | Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu 168 | lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII= 169 | 170 | 171 | 172 | 173 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 174 | wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w 175 | 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f 176 | Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+ 177 | 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC 178 | 179 | 180 | 181 | 182 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 183 | wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78 184 | n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI 185 | N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f 186 | oAc0QjgAAAAASUVORK5CYII= 187 | 188 | 189 | 190 | 191 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 192 | wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+// 193 | h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B 194 | twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA 195 | kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG 196 | WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9 197 | 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg== 198 | 199 | 200 | 201 | 202 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 203 | wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo 204 | dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII= 205 | 206 | 207 | 208 | 783, 17 209 | 210 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace login_design 12 | { 13 | public partial class Form1 : Form 14 | { 15 | public Form1() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void Form1_Load(object sender, EventArgs e) 21 | { 22 | 23 | } 24 | 25 | 26 | 27 | 28 | 29 | 30 | private void button1_Click(object sender, EventArgs e) 31 | { 32 | if (textBox1.Text.ToString() == "yltc" && textBox2.Text.ToString() == "exam") 33 | { 34 | this.Hide(); 35 | Main_Menu f = new Main_Menu(); 36 | f.Show(); 37 | } 38 | else 39 | MessageBox.Show("Sorry! Incorrect Login Details.", "Login Failed", MessageBoxButtons.OK, MessageBoxIcon.Error); 40 | } 41 | 42 | private void button3_Click(object sender, EventArgs e) 43 | { 44 | MessageBox.Show(" RFID BASED ATTENDANCE SYSTEM \n\n CREATED BY: \n ASIM ZULFIQAR \n HARIS KHAN \n CONTACT NO :03442855365", "About", MessageBoxButtons.OK, MessageBoxIcon.Information); 45 | } 46 | 47 | private void button2_Click(object sender, EventArgs e) 48 | { 49 | this.Hide(); 50 | Student s = new Student(); 51 | s.Show(); 52 | } 53 | 54 | private void Exit_Click(object sender, EventArgs e) 55 | { 56 | Application.Exit(); 57 | } 58 | 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Main Menu.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace login_design 2 | { 3 | partial class Main_Menu 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Main_Menu)); 32 | this.pictureBox1 = new System.Windows.Forms.PictureBox(); 33 | this.button1 = new System.Windows.Forms.Button(); 34 | this.button2 = new System.Windows.Forms.Button(); 35 | this.button5 = new System.Windows.Forms.Button(); 36 | this.button3 = new System.Windows.Forms.Button(); 37 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); 38 | this.SuspendLayout(); 39 | // 40 | // pictureBox1 41 | // 42 | this.pictureBox1.BackColor = System.Drawing.Color.White; 43 | this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); 44 | this.pictureBox1.Location = new System.Drawing.Point(-1, 0); 45 | this.pictureBox1.Name = "pictureBox1"; 46 | this.pictureBox1.Size = new System.Drawing.Size(748, 173); 47 | this.pictureBox1.TabIndex = 0; 48 | this.pictureBox1.TabStop = false; 49 | // 50 | // button1 51 | // 52 | this.button1.BackColor = System.Drawing.Color.White; 53 | this.button1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button1.BackgroundImage"))); 54 | this.button1.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; 55 | this.button1.ImageAlign = System.Drawing.ContentAlignment.BottomLeft; 56 | this.button1.ImageKey = "(none)"; 57 | this.button1.Location = new System.Drawing.Point(60, 202); 58 | this.button1.Name = "button1"; 59 | this.button1.Size = new System.Drawing.Size(112, 100); 60 | this.button1.TabIndex = 1; 61 | this.button1.UseVisualStyleBackColor = false; 62 | this.button1.Click += new System.EventHandler(this.button1_Click); 63 | // 64 | // button2 65 | // 66 | this.button2.BackColor = System.Drawing.Color.White; 67 | this.button2.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button2.BackgroundImage"))); 68 | this.button2.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; 69 | this.button2.ImageKey = "(none)"; 70 | this.button2.Location = new System.Drawing.Point(259, 202); 71 | this.button2.Name = "button2"; 72 | this.button2.Size = new System.Drawing.Size(112, 100); 73 | this.button2.TabIndex = 2; 74 | this.button2.UseVisualStyleBackColor = false; 75 | this.button2.Click += new System.EventHandler(this.button2_Click); 76 | // 77 | // button5 78 | // 79 | this.button5.BackColor = System.Drawing.Color.White; 80 | this.button5.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button5.BackgroundImage"))); 81 | this.button5.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; 82 | this.button5.ImageKey = "(none)"; 83 | this.button5.Location = new System.Drawing.Point(419, 202); 84 | this.button5.Name = "button5"; 85 | this.button5.Size = new System.Drawing.Size(112, 100); 86 | this.button5.TabIndex = 5; 87 | this.button5.UseVisualStyleBackColor = false; 88 | this.button5.Click += new System.EventHandler(this.button5_Click); 89 | // 90 | // button3 91 | // 92 | this.button3.BackColor = System.Drawing.SystemColors.ButtonHighlight; 93 | this.button3.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("button3.BackgroundImage"))); 94 | this.button3.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; 95 | this.button3.ImageKey = "(none)"; 96 | this.button3.Location = new System.Drawing.Point(577, 202); 97 | this.button3.Name = "button3"; 98 | this.button3.Size = new System.Drawing.Size(112, 100); 99 | this.button3.TabIndex = 6; 100 | this.button3.UseVisualStyleBackColor = false; 101 | this.button3.Click += new System.EventHandler(this.button3_Click); 102 | // 103 | // Main_Menu 104 | // 105 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 106 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 107 | this.BackColor = System.Drawing.Color.OrangeRed; 108 | this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None; 109 | this.ClientSize = new System.Drawing.Size(746, 329); 110 | this.Controls.Add(this.button3); 111 | this.Controls.Add(this.button5); 112 | this.Controls.Add(this.button2); 113 | this.Controls.Add(this.button1); 114 | this.Controls.Add(this.pictureBox1); 115 | this.ForeColor = System.Drawing.SystemColors.ActiveCaption; 116 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; 117 | this.KeyPreview = true; 118 | this.Name = "Main_Menu"; 119 | this.RightToLeft = System.Windows.Forms.RightToLeft.No; 120 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; 121 | this.Text = "Main Menu"; 122 | this.TransparencyKey = System.Drawing.Color.Transparent; 123 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); 124 | this.ResumeLayout(false); 125 | 126 | } 127 | 128 | #endregion 129 | 130 | private System.Windows.Forms.PictureBox pictureBox1; 131 | private System.Windows.Forms.Button button1; 132 | private System.Windows.Forms.Button button2; 133 | private System.Windows.Forms.Button button5; 134 | private System.Windows.Forms.Button button3; 135 | } 136 | } -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Main Menu.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace login_design 12 | { 13 | public partial class Main_Menu : Form 14 | { 15 | public Main_Menu() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void button5_Click(object sender, EventArgs e) 21 | { 22 | MessageBox.Show(" RFID BASED ATTENDANCE SYSTEM \n\n CREATED BY: \n ASIM ZULFIQAR \n HARIS KHAN \n\n CONTACT NO : 03442855365", "About", MessageBoxButtons.OK, MessageBoxIcon.Information); 23 | 24 | } 25 | 26 | private void button1_Click(object sender, EventArgs e) 27 | { 28 | this.Hide(); 29 | Upload u = new Upload(); 30 | u.Show(); 31 | } 32 | 33 | private void button2_Click(object sender, EventArgs e) 34 | { 35 | this.Hide(); 36 | View v = new View(); 37 | v.Show(); 38 | } 39 | 40 | private void button3_Click(object sender, EventArgs e) 41 | { 42 | this.Hide(); 43 | Form1 ff = new Form1(); 44 | ff.Show(); 45 | } 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Marks_add.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace login_design 2 | { 3 | partial class Marks_add 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 33 | this.Text = "Marks_add"; 34 | } 35 | 36 | #endregion 37 | } 38 | } -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Marks_add.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace login_design 12 | { 13 | public partial class Marks_add : Form 14 | { 15 | public Marks_add() 16 | { 17 | InitializeComponent(); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Marks_add.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace login_design 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("login_design")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("login_design")] 13 | [assembly: AssemblyCopyright("Copyright © 2016")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("f34441ff-6779-42b5-85da-1f71af081d14")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/DataSources/StudentDataSet.TableDataTable.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | login_design.StudentDataSet+TableDataTable, StudentDataSet.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/DataSources/login_design.Properties.Resources.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | login_design.Properties.Resources, login_design, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/DataSources/login_design.Properties.Settings.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | login_design.Properties.Settings, StudentDataSet.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/DataSources/login_design.StudentDataSetTableAdapters.AttendanceTableAdapter.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | login_design.StudentDataSetTableAdapters.AttendanceTableAdapter, StudentDataSet.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/DataSources/login_design.StudentDataSetTableAdapters.TableAdapterManager+UpdateOrderOption.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | login_design.StudentDataSetTableAdapters.TableAdapterManager+UpdateOrderOption, StudentDataSet.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/DataSources/login_design.StudentDataSetTableAdapters.TableAdapterManager.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | login_design.StudentDataSetTableAdapters.TableAdapterManager, StudentDataSet.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/DataSources/login_design.StudentDataSetTableAdapters.TableTableAdapter.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | login_design.StudentDataSetTableAdapters.TableTableAdapter, StudentDataSet.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/DataSources/login_design.timetableTableAdapters.AttendanceTableAdapter.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | login_design.timetableTableAdapters.AttendanceTableAdapter, timetable.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/DataSources/login_design.timetableTableAdapters.TableAdapterManager+UpdateOrderOption.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | login_design.timetableTableAdapters.TableAdapterManager+UpdateOrderOption, timetable.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/DataSources/login_design.timetableTableAdapters.TableAdapterManager.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | login_design.timetableTableAdapters.TableAdapterManager, timetable.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/DataSources/login_design.timetableTableAdapters.TableTableAdapter.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | login_design.timetableTableAdapters.TableTableAdapter, timetable.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/DataSources/login_design.timetableTableAdapters.TimeTableTableAdapter.datasource: -------------------------------------------------------------------------------- 1 |  2 | 8 | 9 | login_design.timetableTableAdapters.TimeTableTableAdapter, timetable.Designer.cs, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null 10 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.34003 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace login_design.Properties 12 | { 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// Returns the cached ResourceManager instance used by this class. 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("login_design.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// Overrides the current thread's CurrentUICulture property for all 56 | /// resource lookups using this strongly typed resource class. 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.34003 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace login_design.Properties { 12 | 13 | 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { 17 | 18 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 19 | 20 | public static Settings Default { 21 | get { 22 | return defaultInstance; 23 | } 24 | } 25 | 26 | [global::System.Configuration.ApplicationScopedSettingAttribute()] 27 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 28 | [global::System.Configuration.SpecialSettingAttribute(global::System.Configuration.SpecialSetting.ConnectionString)] 29 | [global::System.Configuration.DefaultSettingValueAttribute("Data Source=(LocalDB)\\v11.0;AttachDbFilename=|DataDirectory|\\Student.mdf;Integrat" + 30 | "ed Security=True")] 31 | public string StudentConnectionString { 32 | get { 33 | return ((string)(this["StudentConnectionString"])); 34 | } 35 | } 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | <?xml version="1.0" encoding="utf-16"?> 7 | <SerializableConnectionString xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> 8 | <ConnectionString>Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\Student.mdf;Integrated Security=True</ConnectionString> 9 | <ProviderName>System.Data.SqlClient</ProviderName> 10 | </SerializableConnectionString> 11 | Data Source=(LocalDB)\v11.0;AttachDbFilename=|DataDirectory|\Student.mdf;Integrated Security=True 12 | 13 | 14 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Student.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/Student.mdf -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Student.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | False 122 | 123 | 124 | False 125 | 126 | 127 | False 128 | 129 | 130 | False 131 | 132 | 133 | False 134 | 135 | 136 | False 137 | 138 | 139 | False 140 | 141 | 142 | False 143 | 144 | 145 | False 146 | 147 | 148 | 17, 17 149 | 150 | 151 | 153, 17 152 | 153 | 154 | 344, 17 155 | 156 | 157 | 530, 17 158 | 159 | 160 | 701, 17 161 | 162 | 163 | 17, 56 164 | 165 | 166 | 175, 56 167 | 168 | 169 | 327, 56 170 | 171 | 172 | 467, 56 173 | 174 | 175 | 570, 56 176 | 177 | 178 | 17, 95 179 | 180 | 181 | 196, 95 182 | 183 | 184 | 374, 41 185 | 186 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/StudentDataSet.cs: -------------------------------------------------------------------------------- 1 | namespace login_design { 2 | 3 | 4 | public partial class StudentDataSet { 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/StudentDataSet.xsc: -------------------------------------------------------------------------------- 1 |  2 | 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 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/StudentDataSet.xss: -------------------------------------------------------------------------------- 1 |  2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/StudentDataSet1.xsc: -------------------------------------------------------------------------------- 1 |  2 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/StudentDataSet1.xss: -------------------------------------------------------------------------------- 1 |  2 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Student_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/Student_log.ldf -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Upload Data.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace login_design 12 | { 13 | public partial class Upload_Data : Form 14 | { 15 | public Upload_Data() 16 | { 17 | InitializeComponent(); 18 | rfid_CardTextBox.Enabled = false; 19 | serialPort1.Open(); 20 | 21 | } 22 | private void tableBindingNavigatorSaveItem_Click(object sender, 23 | 24 | EventArgs e) 25 | { 26 | this.Validate(); 27 | this.tableBindingSource.EndEdit(); 28 | this.tableAdapterManager.UpdateAll(this.studentDataSet); 29 | 30 | } 31 | 32 | 33 | private void Upload_Data_Load(object sender, EventArgs e) 34 | { 35 | // TODO: This line of code loads data into the 'studentDataSet.Table' table. You can move, or remove it, as needed. 36 | this.tableTableAdapter.Fill(this.studentDataSet.Table); 37 | 38 | } 39 | 40 | private void button1_Click(object sender, EventArgs e) 41 | { 42 | OpenFileDialog dlg = new OpenFileDialog(); 43 | dlg.Filter = "JPG Files(*.Jpg)|*.Jpg| PNG Files (*.Png)|*.Png| All Files(*.*)|*.*"; 44 | dlg.Title = "Upload Picture"; 45 | if (dlg.ShowDialog() == DialogResult.OK) 46 | { 47 | String picPath = dlg.FileName.ToString(); 48 | photoPictureBox.ImageLocation = picPath; 49 | } 50 | } 51 | 52 | private void button2_Click(object sender, EventArgs e) 53 | { 54 | serialPort1.Close(); 55 | this.Hide(); 56 | Upload u = new Upload(); 57 | u.Show(); 58 | } 59 | 60 | private void button3_Click(object sender, EventArgs e) 61 | { 62 | try 63 | { 64 | this.tableBindingSource.AddNew(); 65 | MessageBox.Show("You can add new field now"); 66 | } 67 | catch (Exception ex) 68 | { 69 | MessageBox.Show(ex.Message, "Error", 70 | 71 | MessageBoxButtons.OKCancel, MessageBoxIcon.Error); 72 | } 73 | } 74 | 75 | private void button4_Click(object sender, EventArgs e) 76 | { 77 | try 78 | { 79 | this.Validate(); 80 | this.tableBindingSource.EndEdit(); 81 | this.tableAdapterManager.UpdateAll(this.studentDataSet); 82 | MessageBox.Show("Your data has been saved."); 83 | } 84 | catch (Exception ex) 85 | { 86 | MessageBox.Show(ex.Message, "Error", 87 | 88 | MessageBoxButtons.OKCancel, MessageBoxIcon.Error); 89 | } 90 | } 91 | 92 | private void button5_Click(object sender, EventArgs e) 93 | { 94 | 95 | rfid_CardTextBox.Text = serialPort1.ReadLine(); 96 | } 97 | 98 | 99 | 100 | 101 | 102 | } 103 | } 104 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Upload Data.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | False 122 | 123 | 124 | False 125 | 126 | 127 | False 128 | 129 | 130 | False 131 | 132 | 133 | False 134 | 135 | 136 | False 137 | 138 | 139 | False 140 | 141 | 142 | False 143 | 144 | 145 | False 146 | 147 | 148 | 153, 17 149 | 150 | 151 | 17, 17 152 | 153 | 154 | 311, 17 155 | 156 | 157 | 463, 17 158 | 159 | 160 | 634, 17 161 | 162 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Upload.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace login_design 2 | { 3 | partial class Upload 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.button1 = new System.Windows.Forms.Button(); 32 | this.button2 = new System.Windows.Forms.Button(); 33 | this.button3 = new System.Windows.Forms.Button(); 34 | this.button4 = new System.Windows.Forms.Button(); 35 | this.button5 = new System.Windows.Forms.Button(); 36 | this.SuspendLayout(); 37 | // 38 | // button1 39 | // 40 | this.button1.Location = new System.Drawing.Point(25, 12); 41 | this.button1.Name = "button1"; 42 | this.button1.Size = new System.Drawing.Size(114, 121); 43 | this.button1.TabIndex = 0; 44 | this.button1.Text = "Data"; 45 | this.button1.UseVisualStyleBackColor = true; 46 | this.button1.Click += new System.EventHandler(this.button1_Click); 47 | // 48 | // button2 49 | // 50 | this.button2.Location = new System.Drawing.Point(190, 12); 51 | this.button2.Name = "button2"; 52 | this.button2.Size = new System.Drawing.Size(114, 121); 53 | this.button2.TabIndex = 1; 54 | this.button2.Text = "Marks"; 55 | this.button2.UseVisualStyleBackColor = true; 56 | this.button2.Click += new System.EventHandler(this.button2_Click); 57 | // 58 | // button3 59 | // 60 | this.button3.Location = new System.Drawing.Point(680, 12); 61 | this.button3.Name = "button3"; 62 | this.button3.Size = new System.Drawing.Size(114, 121); 63 | this.button3.TabIndex = 2; 64 | this.button3.Text = "Back"; 65 | this.button3.UseVisualStyleBackColor = true; 66 | this.button3.Click += new System.EventHandler(this.button3_Click); 67 | // 68 | // button4 69 | // 70 | this.button4.Location = new System.Drawing.Point(365, 12); 71 | this.button4.Name = "button4"; 72 | this.button4.Size = new System.Drawing.Size(114, 121); 73 | this.button4.TabIndex = 3; 74 | this.button4.Text = "Fee Notification"; 75 | this.button4.UseVisualStyleBackColor = true; 76 | this.button4.Click += new System.EventHandler(this.button4_Click); 77 | // 78 | // button5 79 | // 80 | this.button5.Location = new System.Drawing.Point(520, 12); 81 | this.button5.Name = "button5"; 82 | this.button5.Size = new System.Drawing.Size(114, 121); 83 | this.button5.TabIndex = 4; 84 | this.button5.Text = "Edit Fee"; 85 | this.button5.UseVisualStyleBackColor = true; 86 | this.button5.Click += new System.EventHandler(this.button5_Click); 87 | // 88 | // Upload 89 | // 90 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 91 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 92 | this.ClientSize = new System.Drawing.Size(823, 145); 93 | this.Controls.Add(this.button5); 94 | this.Controls.Add(this.button4); 95 | this.Controls.Add(this.button3); 96 | this.Controls.Add(this.button2); 97 | this.Controls.Add(this.button1); 98 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow; 99 | this.Name = "Upload"; 100 | this.Text = "Upload"; 101 | this.ResumeLayout(false); 102 | 103 | } 104 | 105 | #endregion 106 | 107 | private System.Windows.Forms.Button button1; 108 | private System.Windows.Forms.Button button2; 109 | private System.Windows.Forms.Button button3; 110 | private System.Windows.Forms.Button button4; 111 | private System.Windows.Forms.Button button5; 112 | } 113 | } -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Upload.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace login_design 12 | { 13 | public partial class Upload : Form 14 | { 15 | public Upload() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void button1_Click(object sender, EventArgs e) 21 | { 22 | this.Hide(); 23 | Upload_Data ud = new Upload_Data(); 24 | ud.Show(); 25 | } 26 | 27 | private void button3_Click(object sender, EventArgs e) 28 | { 29 | this.Hide(); 30 | Main_Menu mm = new Main_Menu(); 31 | mm.Show(); 32 | } 33 | 34 | private void button2_Click(object sender, EventArgs e) 35 | { 36 | this.Hide(); 37 | upload_marks upm = new upload_marks(); 38 | upm.Show(); 39 | 40 | } 41 | 42 | private void button4_Click(object sender, EventArgs e) 43 | { 44 | this.Hide(); 45 | Assignment tt = new Assignment(); 46 | tt.Show(); 47 | } 48 | 49 | private void button5_Click(object sender, EventArgs e) 50 | { 51 | this.Hide(); 52 | Fee f = new Fee(); 53 | f.Show(); 54 | } 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/Upload.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/View Data.Cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace login_design 12 | { 13 | public partial class View_Data : Form 14 | { 15 | public View_Data() 16 | { 17 | InitializeComponent(); 18 | 19 | } 20 | 21 | private void tableBindingNavigatorSaveItem_Click(object sender, EventArgs e) 22 | { 23 | this.Validate(); 24 | this.tableBindingSource.EndEdit(); 25 | this.tableAdapterManager.UpdateAll(this.studentDataSet); 26 | 27 | } 28 | 29 | private void View_Data_Load(object sender, EventArgs e) 30 | { 31 | // TODO: This line of code loads data into the 'studentDataSet.Table' table. You can move, or remove it, as needed. 32 | this.tableTableAdapter.Fill(this.studentDataSet.Table); 33 | 34 | } 35 | 36 | private void button1_Click(object sender, EventArgs e) 37 | { 38 | this.Hide(); 39 | View v = new View(); 40 | v.Show(); 41 | } 42 | 43 | private void roll_NoToolStripButton_Click(object sender, EventArgs e) 44 | { 45 | try 46 | { 47 | this.tableTableAdapter.Roll_No(this.studentDataSet.Table, rfid_cardToolStripTextBox.Text); 48 | } 49 | catch (System.Exception ex) 50 | { 51 | System.Windows.Forms.MessageBox.Show(ex.Message); 52 | } 53 | 54 | } 55 | 56 | private void button2_Click(object sender, EventArgs e) 57 | { 58 | this.Hide(); 59 | View v = new View(); 60 | v.Show(); 61 | } 62 | 63 | private void rOLL_NO2ToolStripButton_Click(object sender, EventArgs e) 64 | { 65 | try 66 | { 67 | this.tableTableAdapter.ROLL_NO2(this.studentDataSet.Table, roll_NoToolStripTextBox.Text); 68 | } 69 | catch (System.Exception ex) 70 | { 71 | System.Windows.Forms.MessageBox.Show(ex.Message); 72 | } 73 | 74 | } 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/View Data.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 634, 17 122 | 123 | 124 | 153, 17 125 | 126 | 127 | 17, 17 128 | 129 | 130 | 131 | 132 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 133 | wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC 134 | DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC 135 | rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV 136 | i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG 137 | 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG 138 | QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX 139 | bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII= 140 | 141 | 142 | 143 | 144 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 145 | wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77 146 | wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0 147 | v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg 148 | UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA 149 | Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu 150 | lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII= 151 | 152 | 153 | 154 | 155 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 156 | wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w 157 | 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f 158 | Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+ 159 | 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC 160 | 161 | 162 | 163 | 164 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 165 | wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78 166 | n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI 167 | N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f 168 | oAc0QjgAAAAASUVORK5CYII= 169 | 170 | 171 | 172 | 173 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 174 | wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+// 175 | h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B 176 | twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA 177 | kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG 178 | WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9 179 | 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg== 180 | 181 | 182 | 183 | 184 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 185 | wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo 186 | dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII= 187 | 188 | 189 | 190 | 385, 56 191 | 192 | 193 | 525, 56 194 | 195 | 196 | 311, 17 197 | 198 | 199 | 463, 17 200 | 201 | 202 | 681, 56 203 | 204 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/View Marks.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace login_design 12 | { 13 | public partial class View_Marks : Form 14 | { 15 | public View_Marks() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void marksBindingNavigatorSaveItem_Click(object sender, EventArgs e) 21 | { 22 | this.Validate(); 23 | this.marksBindingSource.EndEdit(); 24 | this.tableAdapterManager.UpdateAll(this.studentDataSet1); 25 | 26 | } 27 | 28 | private void View_Marks_Load(object sender, EventArgs e) 29 | { 30 | // TODO: This line of code loads data into the 'studentDataSet1.Marks' table. You can move, or remove it, as needed. 31 | this.marksTableAdapter.Fill(this.studentDataSet1.Marks); 32 | 33 | } 34 | 35 | private void button1_Click(object sender, EventArgs e) 36 | { 37 | this.Hide(); 38 | View v = new View(); 39 | v.Show(); 40 | } 41 | 42 | private void fillBy3ToolStripButton_Click(object sender, EventArgs e) 43 | { 44 | try 45 | { 46 | this.marksTableAdapter.FillBy3(this.studentDataSet1.Marks, classToolStripTextBox.Text); 47 | } 48 | catch (System.Exception ex) 49 | { 50 | System.Windows.Forms.MessageBox.Show(ex.Message); 51 | } 52 | 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/View Marks.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 17, 17 122 | 123 | 124 | 159, 17 125 | 126 | 127 | 322, 17 128 | 129 | 130 | 479, 17 131 | 132 | 133 | 650, 17 134 | 135 | 136 | 137 | 138 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 139 | wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC 140 | pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++ 141 | Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ 142 | /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA 143 | zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/ 144 | IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E 145 | rkJggg== 146 | 147 | 148 | 149 | 150 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 151 | wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC 152 | DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC 153 | rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV 154 | i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG 155 | 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG 156 | QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX 157 | bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII= 158 | 159 | 160 | 161 | 162 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 163 | wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77 164 | wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0 165 | v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg 166 | UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA 167 | Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu 168 | lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII= 169 | 170 | 171 | 172 | 173 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 174 | wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w 175 | 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f 176 | Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+ 177 | 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC 178 | 179 | 180 | 181 | 182 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 183 | wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78 184 | n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI 185 | N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f 186 | oAc0QjgAAAAASUVORK5CYII= 187 | 188 | 189 | 190 | 191 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 192 | wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+// 193 | h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B 194 | twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA 195 | kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG 196 | WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9 197 | 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg== 198 | 199 | 200 | 201 | 202 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 203 | wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo 204 | dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII= 205 | 206 | 207 | 208 | 17, 56 209 | 210 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/View.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace login_design 2 | { 3 | partial class View 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.button1 = new System.Windows.Forms.Button(); 32 | this.button2 = new System.Windows.Forms.Button(); 33 | this.button3 = new System.Windows.Forms.Button(); 34 | this.button4 = new System.Windows.Forms.Button(); 35 | this.SuspendLayout(); 36 | // 37 | // button1 38 | // 39 | this.button1.Location = new System.Drawing.Point(27, 12); 40 | this.button1.Name = "button1"; 41 | this.button1.Size = new System.Drawing.Size(111, 119); 42 | this.button1.TabIndex = 0; 43 | this.button1.Text = "Data"; 44 | this.button1.UseVisualStyleBackColor = true; 45 | this.button1.Click += new System.EventHandler(this.button1_Click); 46 | // 47 | // button2 48 | // 49 | this.button2.Location = new System.Drawing.Point(177, 12); 50 | this.button2.Name = "button2"; 51 | this.button2.Size = new System.Drawing.Size(111, 119); 52 | this.button2.TabIndex = 1; 53 | this.button2.Text = "Marks"; 54 | this.button2.UseVisualStyleBackColor = true; 55 | this.button2.Click += new System.EventHandler(this.button2_Click); 56 | // 57 | // button3 58 | // 59 | this.button3.Location = new System.Drawing.Point(464, 12); 60 | this.button3.Name = "button3"; 61 | this.button3.Size = new System.Drawing.Size(111, 119); 62 | this.button3.TabIndex = 2; 63 | this.button3.Text = "Back"; 64 | this.button3.UseVisualStyleBackColor = true; 65 | this.button3.Click += new System.EventHandler(this.button3_Click); 66 | // 67 | // button4 68 | // 69 | this.button4.Location = new System.Drawing.Point(326, 12); 70 | this.button4.Name = "button4"; 71 | this.button4.Size = new System.Drawing.Size(111, 119); 72 | this.button4.TabIndex = 3; 73 | this.button4.Text = "Attendance"; 74 | this.button4.UseVisualStyleBackColor = true; 75 | this.button4.Click += new System.EventHandler(this.button4_Click); 76 | // 77 | // View 78 | // 79 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 80 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 81 | this.ClientSize = new System.Drawing.Size(601, 154); 82 | this.Controls.Add(this.button4); 83 | this.Controls.Add(this.button3); 84 | this.Controls.Add(this.button2); 85 | this.Controls.Add(this.button1); 86 | this.Name = "View"; 87 | this.Text = "View"; 88 | this.ResumeLayout(false); 89 | 90 | } 91 | 92 | #endregion 93 | 94 | private System.Windows.Forms.Button button1; 95 | private System.Windows.Forms.Button button2; 96 | private System.Windows.Forms.Button button3; 97 | private System.Windows.Forms.Button button4; 98 | } 99 | } -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/View.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace login_design 12 | { 13 | public partial class View : Form 14 | { 15 | public View() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void button3_Click(object sender, EventArgs e) 21 | { 22 | this.Hide(); 23 | Main_Menu mm = new Main_Menu(); 24 | mm.Show(); 25 | } 26 | 27 | private void button2_Click(object sender, EventArgs e) 28 | { 29 | this.Hide(); 30 | View_Marks vm = new View_Marks(); 31 | vm.Show(); 32 | } 33 | 34 | private void button1_Click(object sender, EventArgs e) 35 | { 36 | this.Hide(); 37 | View_Data vd = new View_Data(); 38 | vd.Show(); 39 | } 40 | 41 | private void button4_Click(object sender, EventArgs e) 42 | { 43 | this.Hide(); 44 | Atndnce a1 = new Atndnce(); 45 | a1.Show(); 46 | } 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/View.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/bin/Debug/Student.mdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/bin/Debug/Student.mdf -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/bin/Debug/Student_log.ldf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/bin/Debug/Student_log.ldf -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/bin/Debug/login_design - Shortcut.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/bin/Debug/login_design - Shortcut.lnk -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/bin/Debug/login_design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/bin/Debug/login_design.exe -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/bin/Debug/login_design.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/bin/Debug/login_design.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/bin/Debug/login_design.pdb -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/bin/Debug/login_design.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/bin/Debug/login_design.vshost.exe -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/bin/Debug/login_design.vshost.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/bin/Debug/login_design.vshost.exe.manifest: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/login_design.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | en-US 11 | false 12 | 13 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/TempPE/StudentDataSet.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/TempPE/StudentDataSet.Designer.cs.dll -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/TempPE/StudentDataSet1.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/TempPE/StudentDataSet1.Designer.cs.dll -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/TempPE/timetable.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/TempPE/timetable.Designer.cs.dll -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Assignment.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Assignment.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Atndnce.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Atndnce.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Fee.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Fee.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Form1.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Main_Menu.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Main_Menu.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Properties.Resources.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Student.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Student.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Upload.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Upload.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Upload_Data.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.Upload_Data.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.View.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.View.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.View_Data.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.View_Data.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.View_Marks.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.View_Marks.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | c:\users\asim\documents\visual studio 2013\Projects\login_design\login_design\bin\Debug\login_design.exe.config 2 | c:\users\asim\documents\visual studio 2013\Projects\login_design\login_design\bin\Debug\login_design.exe 3 | c:\users\asim\documents\visual studio 2013\Projects\login_design\login_design\bin\Debug\login_design.pdb 4 | c:\users\asim\documents\visual studio 2013\Projects\login_design\login_design\obj\Debug\login_design.csprojResolveAssemblyReference.cache 5 | c:\users\asim\documents\visual studio 2013\Projects\login_design\login_design\obj\Debug\login_design.Form1.resources 6 | c:\users\asim\documents\visual studio 2013\Projects\login_design\login_design\obj\Debug\login_design.Properties.Resources.resources 7 | c:\users\asim\documents\visual studio 2013\Projects\login_design\login_design\obj\Debug\login_design.csproj.GenerateResource.Cache 8 | c:\users\asim\documents\visual studio 2013\Projects\login_design\login_design\obj\Debug\login_design.exe 9 | c:\users\asim\documents\visual studio 2013\Projects\login_design\login_design\obj\Debug\login_design.pdb 10 | C:\Users\Asim\Documents\Visual Studio 2013\Projects\login_design\login_design\obj\Debug\login_design.Main_Menu.resources 11 | C:\Users\Asim\Documents\Visual Studio 2013\Projects\login_design\login_design\bin\Debug\Student.mdf 12 | C:\Users\Asim\Documents\Visual Studio 2013\Projects\login_design\login_design\bin\Debug\Student_log.ldf 13 | C:\Users\Asim\Documents\Visual Studio 2013\Projects\login_design\login_design\obj\Debug\login_design.Upload_Data.resources 14 | C:\Users\Asim\Documents\Visual Studio 2013\Projects\login_design\login_design\obj\Debug\login_design.Upload.resources 15 | C:\Users\Asim\Documents\Visual Studio 2013\Projects\login_design\login_design\obj\Debug\login_design.View_Data.resources 16 | C:\Users\Asim\Documents\Visual Studio 2013\Projects\login_design\login_design\obj\Debug\login_design.View_Marks.resources 17 | C:\Users\Asim\Documents\Visual Studio 2013\Projects\login_design\login_design\obj\Debug\login_design.View.resources 18 | C:\Users\Asim\documents\visual studio 2013\Projects\login_design\login_design\obj\Debug\login_design.Atndnce.resources 19 | C:\Users\Asim\documents\visual studio 2013\Projects\login_design\login_design\obj\Debug\login_design.Student.resources 20 | C:\Users\Asim\documents\visual studio 2013\Projects\login_design\login_design\obj\Debug\login_design.Assignment.resources 21 | C:\Users\Asim\documents\visual studio 2013\Projects\login_design\login_design\obj\Debug\login_design.Fee.resources 22 | C:\Users\Asim\Documents\Visual Studio 2013\Projects\login_design\login_design\obj\Debug\login_design.upload_marks.resources 23 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\bin\Debug\login_design.exe.config 24 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.exe 25 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.pdb 26 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\bin\Debug\Student.mdf 27 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\bin\Debug\Student_log.ldf 28 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\bin\Debug\login_design.exe 29 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\bin\Debug\login_design.pdb 30 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.csprojResolveAssemblyReference.cache 31 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.Assignment.resources 32 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.Atndnce.resources 33 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.Fee.resources 34 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.Form1.resources 35 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.Main_Menu.resources 36 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.Properties.Resources.resources 37 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.Student.resources 38 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.Upload_Data.resources 39 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.upload_marks.resources 40 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.Upload.resources 41 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.View_Data.resources 42 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.View_Marks.resources 43 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.View.resources 44 | C:\Users\Dell\Downloads\yltc _system\login_design5\login_design\obj\Debug\login_design.csproj.GenerateResource.Cache 45 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\bin\Debug\login_design.exe.config 46 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.exe 47 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.pdb 48 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\bin\Debug\Student.mdf 49 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\bin\Debug\Student_log.ldf 50 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\bin\Debug\login_design.exe 51 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\bin\Debug\login_design.pdb 52 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.csprojResolveAssemblyReference.cache 53 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.Assignment.resources 54 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.Atndnce.resources 55 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.Fee.resources 56 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.Form1.resources 57 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.Main_Menu.resources 58 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.Properties.Resources.resources 59 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.Student.resources 60 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.Upload_Data.resources 61 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.upload_marks.resources 62 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.Upload.resources 63 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.View_Data.resources 64 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.View_Marks.resources 65 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.View.resources 66 | C:\Users\asimz\Desktop\login_design\login_design5\login_design\obj\Debug\login_design.csproj.GenerateResource.Cache 67 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.csprojResolveAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.csprojResolveAssemblyReference.cache -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.exe -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.pdb -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.upload_marks.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/GUI/login_design5/login_design/obj/Debug/login_design.upload_marks.resources -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/timetable.xsc: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/timetable.xss: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/upload marks.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace login_design 12 | { 13 | public partial class upload_marks : Form 14 | { 15 | public upload_marks() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void marksBindingNavigatorSaveItem_Click(object sender, EventArgs e) 21 | { 22 | this.Validate(); 23 | this.marksBindingSource.EndEdit(); 24 | this.tableAdapterManager.UpdateAll(this.studentDataSet1); 25 | 26 | } 27 | 28 | private void upload_marks_Load(object sender, EventArgs e) 29 | { 30 | // TODO: This line of code loads data into the 'studentDataSet1.Marks' table. You can move, or remove it, as needed. 31 | this.marksTableAdapter.Fill(this.studentDataSet1.Marks); 32 | 33 | } 34 | 35 | private void fillBy1ToolStripButton_Click(object sender, EventArgs e) 36 | { 37 | try 38 | { 39 | this.marksTableAdapter.FillBy1(this.studentDataSet1.Marks, rollToolStripTextBox.Text); 40 | } 41 | catch (System.Exception ex) 42 | { 43 | System.Windows.Forms.MessageBox.Show(ex.Message); 44 | } 45 | 46 | } 47 | 48 | private void fillBy2ToolStripButton_Click(object sender, EventArgs e) 49 | { 50 | try 51 | { 52 | this.marksTableAdapter.FillBy2(this.studentDataSet1.Marks, _classToolStripTextBox.Text); 53 | } 54 | catch (System.Exception ex) 55 | { 56 | System.Windows.Forms.MessageBox.Show(ex.Message); 57 | } 58 | 59 | } 60 | 61 | private void button1_Click(object sender, EventArgs e) 62 | { 63 | this.Hide(); 64 | Upload up = new Upload(); 65 | up.Show(); 66 | } 67 | } 68 | } 69 | -------------------------------------------------------------------------------- /rfid attendance system/GUI/login_design5/login_design/upload marks.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 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 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 650, 17 122 | 123 | 124 | 125 | 126 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 127 | wwAADsMBx2+oZAAAAUpJREFUOE9jGLzg7gL2/7fmcf6/Oofr/8UZvP+hwsSD60CNfx41/v/zsOH/yckC 128 | pBtwfjov3ICDPSKkG3B8kiBQc93/Pw+q/u9oFydswKWZPP/PTuX7fxKo8Ui/0P993SJAzeX//94r+r++ 129 | Qeb/qhq5/0srFf/PL1X+P6tIFdPAU0B//nlYD9RUC8SV///cKwHivP9/72b+/3sn+f/f23H//92MAOKQ 130 | /5NyNDENONQrDHbu3/ulQI0FQI3ZQI2pQI0J///digZqDPv/70bQ/3/X/f53peliGrCzXeL/lmap/+vA 131 | zpX/v6RC8f/fWzFAjeH/p+Zp/J+QpfW/O0P3f3uq/v/mREPCYTIb6E+Qc//dCPjfk6FDWAM6APnz3w1/ 132 | IPb735qsT7oB3em6YP+CcH2cEekGtCQZ/G+IN/xfE2v8vzLahHQD6AQYGAAkI9iedfyIaQAAAABJRU5E 133 | rkJggg== 134 | 135 | 136 | 137 | 159, 17 138 | 139 | 140 | 17, 17 141 | 142 | 143 | 144 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 145 | wwAADsMBx2+oZAAAAW9JREFUOE+1kE0ow2Ecx3dV3krt4oJaOSCTvIRkMqSxyITIzCQHDouEdnFwIOVC 146 | DrhIDiQl5UTiNG/z2ppafy1S2gX/uDwfY6i1v7Hie3nqeb7fz+/7/FR/Ilwn0G0Exw4fV5GJlXlEZxXC 147 | rIet9bAQvB5Ymgn2sLYAvSZEux7RUQFzE4qQt4bCXAYjPaHvnDoCkLpsRGMB2JqCTGLIijDlwqQ9bEMV 148 | i9OIytR3EMNWcJ/BWH8A6j8/bOGFxwXNxYEvGbMQ9XnQ1/K78KfY3/VXzkMY0qFGG2H4RoLGQshJQNbG 149 | 86CNhdrsX9a/uQZTPhQl4rMY4OLofbl3aX7I8uwPC7y/g1YdjyVJuEvT8e1tfwUYteHUxCCfHChDeHmG 150 | QQvokjlOU+PbWA0x3pZnILVVI3uvQyHsbiLnqnGmRCF1NYD8pDhpRxOH7HQoAKZGkFKjceszQbpSrumX 151 | bO+G80MFwKUTxgfgcO/b8D9IpXoFiiMDHIQm0skAAAAASUVORK5CYII= 152 | 153 | 154 | 155 | 156 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 157 | wwAADsMBx2+oZAAAASpJREFUOE9jGDygcNbz/00Lnv/PnPj4P1QIA4S3P8Apx5A789n/VUfe/8elKL77 158 | wf/ghmu4DciY8vT/wn0fsCqK73n4f+n+///9qy/gNiCh58n/aVveYyiKaL8P1pw56/9/r9ITuA2I7Hr0 159 | v3f1BxRFoa33wJpb1wFt7/z73yX/AG4DApsf/q+b/w6uKLjl7v9Fe///7wBqzpjz879d3c//9hnbcRvg 160 | UXX/f/60NyiK7Ipv/0+f8/u/f9e3/zqF7/5bJKzHbYB96d3/2ZNfYyjSTzn/36ToxX+VrE//jSOX4TbA 161 | Iu/O/9T+11gVGSSd+C+b9vW/bvA83AYYZt3+H9byEqci/dTL/zV8p+E2QCftxn+/6od4Fal4TMBtgFPu 162 | lf8gBXgVDULAwAAA8HbAq6XlmnAAAAAASUVORK5CYII= 163 | 164 | 165 | 166 | 167 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 168 | wwAADsMBx2+oZAAAALZJREFUOE9jGDogvP3BfyiTdBDf/eB/cMM18gyI73n4f+n+///9qy+QbkBE+32w 169 | 5sxZ//97lZ4gzYDQ1ntgza3rgLZ3/v3vkn+AeAOCW+7+X7T3//8OoOaMOT//29X9/G+fsZ00F9gV3/6f 170 | Puf3f/+ub/91Ct/9t0hYT3oY6Kec/29S9OK/Stan/8aRy0g3AAQMkk78l037+l83eB55BoCAfurl/xq+ 171 | 08g3AARUPCZQZsBgBQwMANAUYJgEulBVAAAAAElFTkSuQmCC 172 | 173 | 174 | 175 | 176 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 177 | wwAADsMBx2+oZAAAAKNJREFUOE9jGHygcNbz/1AmeSB35rP/Cd33yDckY8rT//P2//6f0HWHPEMSep78 178 | n73v1//OrX//u5VeJt2QyK5H/6ds+/W/ZOnf/wnT//63yT1LmiGBzQ//t659D9ZsXPLlv3T0tf/GkcuI 179 | N8Sj6v7/krnv4JoVXXpIc4F96d3/gS3PyNMMAhZ5d/7bFFwhTzMIGGbdJl8zCOik3SBf81AEDAwAoH5f 180 | oAc0QjgAAAAASUVORK5CYII= 181 | 182 | 183 | 184 | 185 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 186 | wwAADsMBx2+oZAAAASxJREFUOE9jGFygcNbz/1AmBgDJNS14/j9z4mOcahhyZz77n9B9D6sCkNyqI+// 187 | h7c/wG1AxpSn/+ft//0/oesOhiKQ3MJ9H/4HN1zDbUBCz5P/s/f9+t+59e9/t9LLKApBctO2vP/vX30B 188 | twGRXY/+T9n263/J0r//E6b//W+TexauGCTXu/rDf6/SE7gNCGx++L917XuwZuOSL/+lo6/9N45cBtYA 189 | kqub/+6/S/4B3AZ4VN3/XzL3HVyzoksPXDFILn/am//2GdtxG2Bfevd/YMszDM0gAJLLnvz6v0XCetwG 190 | WOTd+W9TcAVDMwiA5FL7X8O9hBUYZt3GqhkEQHJhLS//6wbPw22ATtoNnJIgOb/qh/81fKfhNgAfcMq9 191 | 8l/FYwIYQ4UGBWBgAAC+0b+zuQxOnAAAAABJRU5ErkJggg== 192 | 193 | 194 | 195 | 196 | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAO 197 | wwAADsMBx2+oZAAAAExJREFUOE9joAr49u3bf1IxVCsEgAWC58Dxh/cf4RhZDETHTNiHaQgpBoAwzBCo 198 | dtINAGGiDUDGyGpoawAxeNSAQWkAORiqnRLAwAAA9EMMU8Daa3MAAAAASUVORK5CYII= 199 | 200 | 201 | 202 | 17, 56 203 | 204 | 205 | 283, 56 206 | 207 | 208 | 322, 17 209 | 210 | 211 | 479, 17 212 | 213 | -------------------------------------------------------------------------------- /rfid attendance system/project file/RFID(1).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/project file/RFID(1).docx -------------------------------------------------------------------------------- /rfid attendance system/project file/RFID.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HighVoltages/Attendance-System-RFID-and-Arduino/22b977a3cc0d54b00e0baff8a35af144c92ac098/rfid attendance system/project file/RFID.docx --------------------------------------------------------------------------------