├── BackupRestoreDatabase.zip ├── Book Shop Management UI Design.zip ├── CRUD Operation using C# Windows Form Application.zip ├── CRUD.zip ├── CRUD_PHP_MYSQLI_SOURCE_CODEPH.zip ├── EAS.zip ├── Employee Attendance -Barcode based and PHP MySqli.zip ├── EmployeeInformation.zip ├── EmployeeInformationSystem ├── LATEST-qrcodesample using PHP and MySql.zip ├── Login and Register VB.NET.zip ├── LoginForm VB.NET.zip ├── OOP-3-4-SET-B.zip ├── OOP-8-9-SET-B.zip ├── OOP-9-10-SET-B.zip ├── OOP-Student_Information_System.zip ├── OOP-Supply_Inventory_Management.zip ├── PDOCRUDOperation.zip ├── PHP CRUD Operations.zip ├── Pharmacy_Inventory_System_In_C_With_Source_Code.zip ├── QRCodeAttendance Complete PHP.zip ├── README.md ├── RFIDandPHP.zip ├── SMS Application GSM MODEM C#.zip ├── STUDENT RECORD SYSTEM IN C#.zip ├── StudentsRecordSystem.zip ├── VB.Net-Implementing a 30-day trial period in a VB.NET application.zip ├── VB.Net-QRCode Generator ├── WEBDEVII-10-11-SET-B.zip ├── WEBDEVII-4-5-SET-B.zip ├── WEBDEVII-WITH LOGIN.zip ├── WEBDEVII.zip ├── mysql-connector-java-5.1.25-bin.jar ├── mysql-connector-java-8.0.26.zip └── qrcodesample using PHP and MySql.zip /BackupRestoreDatabase.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/BackupRestoreDatabase.zip -------------------------------------------------------------------------------- /Book Shop Management UI Design.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/Book Shop Management UI Design.zip -------------------------------------------------------------------------------- /CRUD Operation using C# Windows Form Application.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/CRUD Operation using C# Windows Form Application.zip -------------------------------------------------------------------------------- /CRUD.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/CRUD.zip -------------------------------------------------------------------------------- /CRUD_PHP_MYSQLI_SOURCE_CODEPH.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/CRUD_PHP_MYSQLI_SOURCE_CODEPH.zip -------------------------------------------------------------------------------- /EAS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/EAS.zip -------------------------------------------------------------------------------- /Employee Attendance -Barcode based and PHP MySqli.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/Employee Attendance -Barcode based and PHP MySqli.zip -------------------------------------------------------------------------------- /EmployeeInformation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/EmployeeInformation.zip -------------------------------------------------------------------------------- /EmployeeInformationSystem: -------------------------------------------------------------------------------- 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 | using MySql.Data.MySqlClient; 11 | namespace EmployeeInformation 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 | private void btnAdd_Click(object sender, EventArgs e) 26 | { 27 | string connection = "server=localhost;user id=root;password=;database=employeerecord"; 28 | string query = "INSERT INTO tbl_employee(FIRSTNAME,MI,LASTNAME,GENDER,POSITION)VALUES('"+ this.FIRSTNAME.Text + "','" + this.MI.Text + "','" + this.LASTNAME.Text + "','" + this.GENDER.Text + "','" + this.POSITION.Text + "')"; 29 | MySqlConnection conn = new MySqlConnection(connection); 30 | MySqlCommand cmd = new MySqlCommand(query, conn); 31 | MySqlDataReader dr; 32 | conn.Open(); 33 | dr = cmd.ExecuteReader(); 34 | MessageBox.Show("Successfully saved"); 35 | conn.Close(); 36 | } 37 | 38 | private void btnUpdate_Click(object sender, EventArgs e) 39 | { 40 | string connection = "server=localhost;user id=root;password=;database=employeerecord"; 41 | string query = "UPDATE tbl_employee SET FIRSTNAME='" + this.FIRSTNAME.Text + "',MI='" + this.MI.Text + "',LASTNAME='" + this.LASTNAME.Text + "',GENDER='" + this.GENDER.Text + "',POSITION='" + this.POSITION.Text + "' WHERE EMPID='"+ this.EMPID.Text + "'"; 42 | MySqlConnection conn = new MySqlConnection(connection); 43 | MySqlCommand cmd = new MySqlCommand(query, conn); 44 | MySqlDataReader dr; 45 | conn.Open(); 46 | dr = cmd.ExecuteReader(); 47 | MessageBox.Show("Record has been updated successfully"); 48 | conn.Close(); 49 | } 50 | 51 | private void btnDelete_Click(object sender, EventArgs e) 52 | { 53 | string connection = "server=localhost;user id=root;password=;database=employeerecord"; 54 | string query = "DELETE FROM tbl_employee WHERE EMPID='"+ this.EMPID.Text + "'"; 55 | MySqlConnection conn = new MySqlConnection(connection); 56 | MySqlCommand cmd = new MySqlCommand(query, conn); 57 | MySqlDataReader dr; 58 | conn.Open(); 59 | dr = cmd.ExecuteReader(); 60 | MessageBox.Show("Data has been succesfully deleted!!"); 61 | conn.Close(); 62 | } 63 | 64 | private void btnLoadData_Click(object sender, EventArgs e) 65 | { 66 | string connection = "server=localhost;user id=root;password=;database=apsystem"; 67 | string query = "SELECT * FROM tbl_employee"; 68 | MySqlConnection conn = new MySqlConnection(connection); 69 | MySqlCommand cmd = new MySqlCommand(query, conn); 70 | MySqlDataAdapter da = new MySqlDataAdapter(); 71 | da.SelectCommand = cmd; 72 | DataTable dt = new DataTable(); 73 | da.Fill(dt); 74 | dataGridView1.DataSource = dt; 75 | } 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /LATEST-qrcodesample using PHP and MySql.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/LATEST-qrcodesample using PHP and MySql.zip -------------------------------------------------------------------------------- /Login and Register VB.NET.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/Login and Register VB.NET.zip -------------------------------------------------------------------------------- /LoginForm VB.NET.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/LoginForm VB.NET.zip -------------------------------------------------------------------------------- /OOP-3-4-SET-B.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/OOP-3-4-SET-B.zip -------------------------------------------------------------------------------- /OOP-8-9-SET-B.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/OOP-8-9-SET-B.zip -------------------------------------------------------------------------------- /OOP-9-10-SET-B.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/OOP-9-10-SET-B.zip -------------------------------------------------------------------------------- /OOP-Student_Information_System.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/OOP-Student_Information_System.zip -------------------------------------------------------------------------------- /OOP-Supply_Inventory_Management.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/OOP-Supply_Inventory_Management.zip -------------------------------------------------------------------------------- /PDOCRUDOperation.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/PDOCRUDOperation.zip -------------------------------------------------------------------------------- /PHP CRUD Operations.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/PHP CRUD Operations.zip -------------------------------------------------------------------------------- /Pharmacy_Inventory_System_In_C_With_Source_Code.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/Pharmacy_Inventory_System_In_C_With_Source_Code.zip -------------------------------------------------------------------------------- /QRCodeAttendance Complete PHP.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/QRCodeAttendance Complete PHP.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SourceCodePH 2 | 3 | You can donwload the source code for FREE!!. Please dont forget to support my YT Channel below link. 4 | 5 | IF YOU FIND ANY ERRORS OR ANY PROBLEMS RELATED TO ALL PROGRAM, FEEL FREE TO CONTACT US. 6 | LEAVE A COMMENT IF YOU LOVED OUR WORK. 7 | 8 | FACEBOOK PAGE: https://web.facebook.com/SourceCodePH2020/ 9 | FOR MORE PROJECTS :http://www.youtube.com/c/SourceCodePHOnce 10 | 11 | THANK YOU FOR DOWNLOADING AND HAPPY CODING 12 | 13 | By Andres P. Jario 14 | -------------------------------------------------------------------------------- /RFIDandPHP.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/RFIDandPHP.zip -------------------------------------------------------------------------------- /SMS Application GSM MODEM C#.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/SMS Application GSM MODEM C#.zip -------------------------------------------------------------------------------- /STUDENT RECORD SYSTEM IN C#.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/STUDENT RECORD SYSTEM IN C#.zip -------------------------------------------------------------------------------- /StudentsRecordSystem.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/StudentsRecordSystem.zip -------------------------------------------------------------------------------- /VB.Net-Implementing a 30-day trial period in a VB.NET application.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/VB.Net-Implementing a 30-day trial period in a VB.NET application.zip -------------------------------------------------------------------------------- /VB.Net-QRCode Generator: -------------------------------------------------------------------------------- 1 | Public Class Generate_QR_Code 2 | Private Sub btnSave_Click(sender As Object, e As EventArgs) Handles btnSave.Click 3 | Dim SD As New SaveFileDialog 4 | SD.FileName = "Qrcode" 5 | SD.Filter = "PNG Files only (*.png)|*.png" 6 | If SD.ShowDialog() = Windows.Forms.DialogResult.OK Then 7 | Try 8 | PictureBox1.Image.Save(SD.FileName, System.Drawing.Imaging.ImageFormat.Png) 9 | MessageBox.Show("Successfully Saved") 10 | Catch ex As Exception 11 | 12 | End Try 13 | End If 14 | End Sub 15 | 16 | Private Sub btnGenerate_Click(sender As Object, e As EventArgs) Handles btnGenerate.Click 17 | Dim generate As New MessagingToolkit.Barcode.BarcodeEncoder 18 | generate.BackColor = Color.White 19 | generate.LabelFont = New Font("Arial", 7, FontStyle.Regular) 20 | generate.IncludeLabel = True 21 | generate.CustomLabel = TextQrcode.Text 22 | 23 | Try 24 | PictureBox1.Image = New Bitmap(generate.Encode(MessagingToolkit.Barcode.BarcodeFormat.QRCode, TextQrcode.Text)) 25 | Catch ex As Exception 26 | PictureBox1.Image = Nothing 27 | End Try 28 | End Sub 29 | End Class 30 | -------------------------------------------------------------------------------- /WEBDEVII-10-11-SET-B.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/WEBDEVII-10-11-SET-B.zip -------------------------------------------------------------------------------- /WEBDEVII-4-5-SET-B.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/WEBDEVII-4-5-SET-B.zip -------------------------------------------------------------------------------- /WEBDEVII-WITH LOGIN.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/WEBDEVII-WITH LOGIN.zip -------------------------------------------------------------------------------- /WEBDEVII.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/WEBDEVII.zip -------------------------------------------------------------------------------- /mysql-connector-java-5.1.25-bin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/mysql-connector-java-5.1.25-bin.jar -------------------------------------------------------------------------------- /mysql-connector-java-8.0.26.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/mysql-connector-java-8.0.26.zip -------------------------------------------------------------------------------- /qrcodesample using PHP and MySql.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andyjario/SourceCodePH/b2ad8d9b44ed816214c9372dbe717c76212e789a/qrcodesample using PHP and MySql.zip --------------------------------------------------------------------------------