You are on page 1of 68

LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX A
(SUMMARY OF TEST RESULTS)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

Summary of Test Results Conducted by the Technical Adviser

Development of Barangay Information System for Sabang, Dasmariñas Cavite -


Test Results for Conformance and Functionality Testing by the Technical Adviser
Total Number
Testing Pass Fail Percentage
of Criteria

Conformance 21 0 21 100%

Functionality 48 0 48 100%

Summary of Test Results Conducted by the Other Developers’ Group


Development of Barangay Information System for Sabang, Dasmariñas Cavite -
Test Results for Conformance and Functionality Testing by the Other Developers’
Group
Total Number
Testing Pass Fail Percentage
of Criteria

Conformance 19 2 21 95%

Functionality 48 0 48 100%

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX B
(SUMMARY OF EVALUATION RESULTS)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

End Users’ Summary of Evaluation by Criteria

Level of System Mean Standard Interpretation Rank


Acceptability Deviation
Functionality 3.8 0.04 Highly 1
Acceptable
Reliability 3.68 0.09 Highly 4
Acceptable
Usability 3.78 0.63 Highly 2
Acceptable
Efficiency 3.67 0.08 Highly 5
Acceptable
Maintainability 3.76 0.09 Highly 3
Acceptable
Portability 3.62 0.25 Highly 6
Acceptable
Average Mean 3.73 0.20 Highly Acceptable
and SD

IT Experts’ Summary of Evaluation by Criteria

Level of System Mean Standard Interpretation Rank


Acceptability Deviation
Functionality 3.5 0.075 Highly 3
Acceptable
Reliability 2.93 0.132 Moderately 6
Acceptable
Usability 3.47 0.23 Highly 4
Acceptable
Efficiency 3.55 0.06 Highly 1
Acceptable
Maintainability 3.4 0.12 Highly 5
Acceptable
Portability 3.5 0.35 Highly 2
Acceptable
Average Mean 3.39 0.16 Highly Acceptable
and SD

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

Overall Summary of Evaluation by Criteria

Level of System Mean Standard Interpretation Rank


Acceptability Deviation
Functionality 3.725 0.03 Highly 3
Acceptable
Reliability 3.49 0.12 Highly 6
Acceptable
Usability 3.7 0.093 Highly 4
Acceptable
Efficiency 4.87 0.08 Highly 1
Acceptable
Maintainability 3.665 0.092 Highly 5
Acceptable
Portability 3.725 0.6 Highly 2
Acceptable
Average Mean 3.86 0.17 Highly Acceptable
and SD

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX C
(DATA MATRIX)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX D
(SOURCE CODE)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

using System; private void Dashboard_Load(object


using System.Collections.Generic; sender, EventArgs e)
using System.ComponentModel; {
using System.Data; conn.Open();
using System.Drawing; cmd.Connection = conn;
using System.Linq; cmd1.Connection = conn;
using System.Text; cmd2.Connection = conn;
using System.Threading.Tasks; cmd3.Connection = conn;
using System.Windows.Forms; cmd.CommandText = "SELECT
using System.Data.OleDb; count(ResidentNo) FROM Residents";
using System.IO; cmd1.CommandText =
"SELECT count(Case) FROM Blotter";
namespace WindowsFormsApp1 cmd2.CommandText =
{ "SELECT sum(Amount) FROM
public partial class Dashboard : Form Record";
{ cmd3.CommandText =
OleDbConnection conn = new "SELECT count(Description) FROM
OleDbConnection(@"Provider=Microso Record";
ft.ACE.OLEDB.12.0;Data Int32 rows_count =
Source=C:\Users\user\Desktop\New Convert.ToInt32(cmd.ExecuteScalar());
folder\Database1.accdb"); Int32 rows_count1 =
OleDbCommand cmd = new Convert.ToInt32(cmd1.ExecuteScalar());
OleDbCommand(); Int32 rows_count2 =
OleDbCommand cmd1 = new Convert.ToInt32(cmd2.ExecuteScalar());
OleDbCommand(); Int32 rows_count3 =
OleDbCommand cmd2 = new Convert.ToInt32(cmd3.ExecuteScalar());
OleDbCommand(); cmd.Dispose();
OleDbCommand cmd3 = new cmd1.Dispose();
OleDbCommand(); cmd2.Dispose();
cmd3.Dispose();
private string name; conn.Close();
label6.Text =
public Dashboard(string name, rows_count.ToString();
string status) label14.Text =
{ rows_count1.ToString();
InitializeComponent(); label16.Text =
this.name = name; rows_count2.ToString();
label11.Text = status; label18.Text =
label19.Text = name; rows_count3.ToString();
} FormBorderStyle =
FormBorderStyle.None;
WindowState =
FormWindowState.Maximized;
COLLEGE OF ENGINEERING, COMPUTER STUDIES AND
ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

} private void button2_Click(object


private void button6_Click(object sender, EventArgs e)
sender, EventArgs e) {
{
DialogResult diag =
MessageBox.Show("Are you want to DialogResult diag =
logout?", "Message", MessageBox.Show("Are you registered
MessageBoxButtons.YesNo, voter?", "Message",
MessageBoxIcon.Information); MessageBoxButtons.YesNo,
if (diag == DialogResult.Yes) MessageBoxIcon.Information);
{ if (diag == DialogResult.Yes)
this.Hide(); {
Login req = new Login(); this.Hide();
req.Show(); Verify req = new
} Verify(label19.Text,label11.Text);
else req.Show();
{ }
return; else
} {
} this.Hide();
Registration reg = new
private void button1_Click(object Registration(label19.Text,label11.Text);
sender, EventArgs e) reg.Show();
{ }
if (label11.Text == "Admin") }
{
this.Hide(); private void button3_Click(object
Search res = new sender, EventArgs e)
Search(label19.Text,label11.Text); {
res.Show(); this.Hide();
} Accounts acc = new
else Accounts(label19.Text,label11.Text);
{ acc.Show();
this.Hide(); }
Staff staff = new
Staff(label19.Text,label11.Text); private void button7_Click(object
staff.Show(); sender, EventArgs e)
} {
} this.Hide();
Payment pay = new
Payment(label19.Text,label11.Text);
pay.Show();
}
COLLEGE OF ENGINEERING, COMPUTER STUDIES AND
ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

private void button5_Click(object using System.Collections.Generic;


sender, EventArgs e) using System.ComponentModel;
{ using System.Data;
this.Hide(); using System.Drawing;
Blotter blt = new using System.Linq;
Blotter(label19.Text,label11.Text); using System.Text;
blt.Show(); using System.Threading;
using System.Threading.Tasks;
}
using System.Windows.Forms;
private void button4_Click(object using System.Data.OleDb;
sender, EventArgs e)
{ namespace WindowsFormsApp1
this.Hide(); {
Transactions rec = new public partial class Login : Form
Transactions(label19.Text,label11.Text); {
rec.Show(); OleDbConnection conn = new
} OleDbConnection(@"Provider=Microso
ft.ACE.OLEDB.12.0;Data
private void timer1_Tick(object Source=C:\Users\user\Desktop\New
sender, EventArgs e) folder\Database1.accdb");
{
DateTime dt = DateTime.Now; public Login()
label8.Text = {
dt.ToShortDateString(); InitializeComponent();
label10.Text = }
dt.ToLongTimeString();
} private void Form1_Load(object
sender, EventArgs e)
private void button8_Click(object {
sender, EventArgs e) textBox1.Focus();
{ FormBorderStyle =
this.Hide(); FormBorderStyle.None;
BlotterReports br = new WindowState =
BlotterReports(label19.Text, FormWindowState.Maximized;
label11.Text); }
br.Show();
}
} private void
} button1_Click_1(object sender,
EventArgs e)
{
using System;
COLLEGE OF ENGINEERING, COMPUTER STUDIES AND
ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

OleDbDataAdapter da = new MessageBox.Show("Login success!",


OleDbDataAdapter("Select "Message", MessageBoxButtons.OK,
Status,Account From Accounts1 where MessageBoxIcon.Information);
Username='" + textBox1.Text + "' and this.Hide();
Password = '" + textBox2.Text + "'", Staff staff = new
conn); Staff(textBox1.Text,
DataTable dt = new DataTable(); dt.Rows[0][0].ToString());
da.Fill(dt); staff.Show();
if (dt.Rows.Count == 1) }
{ else
if (dt.Rows[0][0].ToString() {
== "Admin")
{ MessageBox.Show("Inactive account.!",
if (dt.Rows[0][1].ToString() "Alert", MessageBoxButtons.OK,
== "Active") MessageBoxIcon.Warning);
{ textBox1.Clear();
textBox2.Clear();
MessageBox.Show("Login success!", textBox1.Focus();
"Message", MessageBoxButtons.OK, }
MessageBoxIcon.Information); }
this.Hide(); else
Dashboard frm2 = new {
Dashboard(textBox1.Text, MessageBox.Show("Login
dt.Rows[0][0].ToString()); success!", "Message",
frm2.Show(); MessageBoxButtons.OK,
} MessageBoxIcon.Information);
else this.Hide();
{ User user = new
User(dt.Rows[0][0].ToString());
MessageBox.Show("Inactive account.!", user.Show();
"Alert", MessageBoxButtons.OK, }
MessageBoxIcon.Warning); }
textBox1.Clear(); else
textBox2.Clear(); {
textBox1.Focus(); if
} (string.IsNullOrEmpty(textBox2.Text))
} {
else if MessageBox.Show("Please
(dt.Rows[0][0].ToString() == "Staff") input password.", "Message",
{ MessageBoxButtons.OK,
if (dt.Rows[0][1].ToString() MessageBoxIcon.Warning);
== "Active") textBox2.Focus();
{ }
COLLEGE OF ENGINEERING, COMPUTER STUDIES AND
ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

else {
{ Application.ExitThread();
MessageBox.Show("Invalid }
username/password.", "Message", else if(dialog ==
MessageBoxButtons.OK, DialogResult.No)
MessageBoxIcon.Error); {
textBox1.Focus(); return;
} }
} }
} }
}
private void
Form1_FormClosing(object sender,
FormClosingEventArgs e)
{
Application.ExitThread();
}

private void
textBox1_KeyPress(object sender,
KeyPressEventArgs e)
{
if (e.KeyChar == (char)13)
textBox2.Focus();
}

private void
textBox2_KeyPress(object sender,
KeyPressEventArgs e)
{
if (e.KeyChar == (char)13)
button1.PerformClick();
}

private void button2_Click(object


sender, EventArgs e)
{
DialogResult dialog =
MessageBox.Show("Are you sure you
want to exit", "Message",
MessageBoxButtons.YesNo,
MessageBoxIcon.Question);
if(dialog == DialogResult.Yes)
COLLEGE OF ENGINEERING, COMPUTER STUDIES AND
ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX E
(SAMPLE REPORTS)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX F
(SYSTEM FLOWCHART)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX G
(CONTEXT DIAGRAM)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX H
(DATA FLOW DIAGRAM)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX I
(BUDGETARY ESTIMATE)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

Particulars Cost Quantity Amount

Thesis problem proposal


Transportation ₱ 250.00 5 ₱ 1,250.00

Printing ₱ 350.00 1 ₱ 350.00

Application Development
Transportation ₱ 500.00 3 ₱ 1,500.00

Food ₱ 500.00 5 ₱ 2500.00

Proposal Defense
Defense Fee ₱ 1,550.00 1 ₱ 1,550.00
Printing and Reproduction ₱ 250.00 3 ₱ 600.00

Soft Binding ₱ 250.00 3 ₱ 600.00

TOTAL ₱ 8350.00

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX J
(ENDORSEMENT AND REQUEST LETTER)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

LYCEUM OF THE PHILIPPINES UNIVERSITY


Cavite Campus

Endorsement and Request for Final Defense

This is to inform that the research manuscript entitled __Development of Barangay Information
System for SabangDasmariñas Cavite.
submitted by:

________Baldomar, Patrick P.____ _____Eugenio , Vincent Francis A.__


Proponent’s Signature over Printed Name Proponent’s Signature over Printed Name

____Quintao, Aljon T.______ ___Ramos, Harvey L._____ Proponent’s


Signature over Printed Name Proponent’s Signature over Printed Name

___Sales, Ross Chandler M.__ Proponent’s


Signature over Printed Name

with the degree _ Bachelor of Science in Information Technology _ under the College of _Engineering,
Computer Studies and Architecture_ has/have duly accomplished the requirements needed for final
defense.

I have reviewed and fully endorse the proposal manuscript attached herewith for oral
review/defense on _04/24/18 _ from__10:00am _ to __11:30___ at the _____S302 ___.
mm/dd/yyyy start time end time venue

__ Mr. RaymundConstante_____
ResearchAdviser

We have received copies of the manuscript and accept it for final defense on the aforestated date
and venue.

_____Mr. Edison Feranil____ _______ ____Mrs. Maricar Pastor__ _______


Panelist Date Panelist Date

Approved by:

_____Mr. JovenCajigas_______
Dean/Associate Dean/Chairperson’s Signature over Printed Name

Date Completed: ______________

Attachment: Student Request Payment for Thesis/Research Defense

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX K
(ASSIGNMENT OF ENGLISH CRITIC)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

LYCEUM OF THE PHILIPPINES UNIVERSITY


Cavite Campus

Assignment of English Critic

This is to inform that the research manuscript entitled entitled Development of Barangay
Information System for Sabang, Dasmariñas Cavite.

submitted by:

Baldomar, Patrick Eugenio, Vincent Francis


Proponent’s Signature over Printed Name Proponent’s Signature over Printed
Name

Quintao, Aljon Ramos, Harvey


Proponent’s Signature over Printed Name Proponent’s Signature over Printed
Name

Sales, Ross Chandler


Proponent’s Signature over Printed Name

with the Bachelor of Science in Information Technology under the College of Engineering, Computer
Studies and Architecture has/have been duly assigned under your faculty for proofreading and English
editing with respect to the standards of proper grammar and composition.

Conforme:

________________________________ Date Signed: ___________


English Critic’s Signature over Printed Name
(mm/dd/yyyy)

Approved by:

________________________________ Date Signed: ___________


Language Coordinator’s Signature over Printed Name (mm/dd/yyyy)

Note: Reproduce and distribute two (2) duly signed copies to English Critic and Language Coordinator
COLLEGE OF ENGINEERING, COMPUTER STUDIES AND
ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX L
(ASSIGNMENT OF TECHNICAL CRITIC)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

LYCEUM OF THE PHILIPPINES UNIVERSITY


Cavite Campus

Assignment of Technical Critic

This is to inform that the research manuscript entitled Development of Barangay Information
System for SabangDasmariñas Cavite.
submitted by:

________Baldomar, Patrick P._____ _____Eugenio , Vincent Francis A.__


Proponent’s Signature over Printed Name Proponent’s Signature over Printed Name

____Quintao, Aljon T.______ __Ramos, Harvey L._____ Proponent’s


Signature over Printed Name Proponent’s Signature over Printed Name

___Sales, Ross Chandler M.___


Proponent’s Signature over Printed Name

with the degree _ Bachelor of Science in Information Technology _under the College of_Engineering,
Computer Studies and Architecture_has/have been duly assigned under your faculty for technical
editingand review with respect to form, styles, systems and standards adhered by the institution and the
discipline.

Conforme:

_______Mr. Rommel Dy_______ Date Signed: ___________


Technical Critic’s Signature over Printed Name (mm/dd/yyyy)

Approved by:

_______Ms. HerchelAquines_________ Date Signed: ___________


Area Coordinator’s Signature over Printed Name (mm/dd/yyyy)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX M
(ASSIGNMENT OF STATISTICIAN)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

LYCEUM OF THE PHILIPPINES UNIVERSITY


Cavite Campus

Assignment of Statistician

This is to inform that the research manuscript entitled entitled Development of Barangay
Information System for Sabang, Dasmariñas Cavite.

submitted by:

Baldomar, Patrick Eugenio, Vincent Francis


Proponent’s Signature over Printed Name Proponent’s Signature over Printed
Name

Quintao, Aljon Ramos, Harvey


Proponent’s Signature over Printed Name Proponent’s Signature over Printed
Name

Sales, Ross Chandler


Proponent’s Signature over Printed Name

Bachelor of Science in Information Technology under the College of Engineering, Computer Studies and
Architecture has/have been duly assigned under your faculty for statistical analysis with respect to
appropriate measurement tools and techniques.

Conforme:

________________________________ Date Signed: ___________


Statistician’s Signature over Printed Name (mm/dd/yyyy)

Approved by:

________________________________ Date Signed: ___________


Chairperson’s Signature over Printed Name (mm/dd/yyyy)

Note: Reproduce and distribute two (2) duly signed copies to Statistician and Chairperson (DOEA)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX N
(CERTIFICATE OF ENGLISH EDITING)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

LYCEUM OF THE PHILIPPINES UNIVERSITY


Cavite Campus

Certificate of English Editing

This is to certify that the research manuscript entitled:

Development of Barangay Information System for Sabang, Dasmariñas Cavite

submitted by:
Baldomar, Patrick Eugenio, Vincent Francis
Proponent’s Signature over Printed Name Proponent’s Signature over Printed
Name

Quintao, Aljon Ramos, Harvey


Proponent’s Signature over Printed Name Proponent’s Signature over Printed
Name

Sales, Ross Chandler


Proponent’s Signature over Printed Name

for the degree Bachelor of Science in Information Technology under the College of Engineering,
Computer Studies and Architecture has been read and found it thorough and acceptable with
respect to grammar and composition by the undersigned English critic.

________________________________ Date of Completion: ___________


English Critic’s Signature over printed name
(mm/dd/yyyy)
Contact # :_____________________

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX O
(CERTIFICATE OF TECHNICAL EDITING)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX P

(CERTIFICATE OF STATISTICAL ANALYSIS)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

LYCEUM OF THE PHILIPPINES UNIVERSITY


Cavite Campus

Certificate of Statistical Analysis

This is to certify that the research manuscript entitled:

Development of Barangay Information System for Sabang, Dasmariñas Cavite

submitted by:
Baldomar, Patrick Eugenio, Vincent Francis
Proponent’s Signature over Printed Name Proponent’s Signature over Printed
Name

Quintao, Aljon Ramos, Harvey


Proponent’s Signature over Printed Name Proponent’s Signature over Printed
Name

Sales, Ross Chandler


Proponent’s Signature over Printed Name

for the degree Bachelor of Science in Information Technology under the College of Engineering,
Computer Studies and Architecture has been tabulated and analyzed by the undersigned
statistician with respect to appropriate measurement tools and techniques.

________________________________ Date of Completion: ___________


Statistician’s Signature over printed name (mm/dd/yyyy)
Affiliation:_____________________
Contact # :_____________________

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX Q
(ROUTING SLIP OF FINAL MANUSCRIPT)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

LYCEUM OF THE PHILIPPINES UNIVERSITY


Cavite Campus

Routing Slip of Final Manuscript

Title of Research/Project:

Development of Barangay Information System for Sabang, Dasmariñas Cavite

Proponent(s): ___ Sem. A.Y.


20__- 20__
A. Baldomar, Patrick _________ Degree:
B. Eugenio, Vincent Francis ______________ BSIT
_______________
C. Quintao, Aljon_______________________ __ College:
D. Ramos, Harvey_ _____________________________ COESCA____
_____________________
E. Sales, Ross Chandler ____ ____________________ Name of Adviser:

____________________________________
Approval of Final Manuscript
Date Date Remarks/Signature
Received Released
Adviser

Panel 1

Panel 2

Technical Critic

English Critic

Adviser
Associate
Dean/Chairperson
Executive Dean

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

Distribution of Copies of Final Manuscript


Received by Signature
Adviser (Hard Copy)
Associate Dean/
Chairperson (Soft Copy)
Executive Dean (Soft Copy)

ARC (Hard & Soft Copy)


Research Office (Soft Copy)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX R
(BROCHURE)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX S
(USER’S MANUAL)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

USER’S MANUAL

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

Table of Contents

Table Page
Application Overview…………………………………………………………………………………… 3

Development…………………………………………….……………………………………………… 3

Application Features…………………………………………………………………………………….. 3

System Features………………………………………………………………………………………… 3

Login Window....................................................................................................................... .............. 4

Main Menu.......................................................................................................................................... 4

Verification Window.......................................................................................................... ................. 5

Permit Section..................................................................................................................................... 6

Blotter Record............................................................................................................... ...................... 6

Add Blotter..................................................................................................................................... ..... 7

Blotter Reports.................................................................................................................................... 7

Transaction Reports.......................................................................................................... .................. 8

Payment Section.................................................................................................................................. 9

Staff Information............................................................................................................ ..................... 9

Staff Information.................................................................................................................................. 10

Staff Information............................................................................................................ .................... 11

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

Application Overview

The project entitled: BIS Barangay Information System is a system

software application that aims to make the processing of the barangay a lot easier and

faster.

Development

The software application was developed by using Visual Studio 2017,

Adobe Photoshop and Microsoft Access 2013.

Application Features

The software application is intended to make the processing of the

barangay documents faster and easier. Also, to make the information of the residents safe.

System Features

Windows 7/8/8.1/10, Microsoft Access and Crystal Report Engine for

Visual Studio 2017 version 13_0_21.

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

BIS: Barangay Information System

I. Login Window

1.) Login – Goes to the main menu.

2.) Exit – Exit the program.

3.) Username – The user will input username.

4.) Password – Input password.

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

II. Main Menu

1.) Registered Resident – Goes to resident information window.

2.) Permit – Goes to verification window.

3.) Blotter Record – Goes to blotter record window.

4.) Transaction Reports – Goes to transaction window.

5.) Blotter Reports – Goes to blotter report window.

6.) Payment Section – Goes to payment section window.

7.) Staff Information – Goes to staff information window.

8.) Logout – Goes to login window.

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

III. Verification Window

1.) First Name - input first name of the resident.

2.) Middle Name – input middle name of the resident.

3.) Last Name – input last name of the resident.

4.) Verify – Goes to permit section.

5.) Cancel – Goes to the main menu.

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

IV. Permit Section

1.) Document – Choose the type of document.

2.) Purpose – Select the purpose of the document.

3.) Resident Information – The resident will provide all the information.

4.) Preview Button – Show the document based on the resident information.

5.) Print – Goes to printing options.

6.) Exit – Goes to the main menu.

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

V. Blotter Record

1. Add Button – Goes to add blotter record window.

2. Exit Button – Goes to main menu.

3. Print Table- Goes to blotter reports window.

4. Table – List of all person who has a pending case and case closed.

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

VI. Add Blotter

1. Save Button – Save and print the record.

2. Exit Button – Goes to main menu.

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

VII. Blotter Reports

1. Filter Button – Filter the report.

2. Print Button – Prints the report.

3. Previous Button – Shows the previous page of the report.

4. Next Button – Shows the next page of the report.

5. Exit Button – Goes to main menu.

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

VIII. Transaction Reports

1.) Search Button – Filter the report based on the selected

document.

2.) Filter Button – Filter the report using “from date” and “to

date”.

3.) Print Button – Prints the report.

4.) Load Button – Load all the transaction history.

5.) Previous Button – Shows the previous page of the report.

6.) Next Button – Shows the next page of the report.

7.) Exit Button – Goes to main menu.

1.)
COLLEGE OF ENGINEERING, COMPUTER STUDIES AND
ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

IX. Payment Section

1. Pay Button – Pay the total amount of all the document that has been requested

by the resident.

2. Preview Document Button – Preview the receipt of the resident.

3. Print Button – Print the receipt.

4. Exit Button – Goes to main menu.

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

X. Staff Information

1.) Add Button – Shows the Browse Button and Save Button.

2.) Exit Button – Goes to main menu.

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

XI. Staff Information

1.) Browse Button – A dialogue box will open and you will select a picture.

2.) Save Button – Save the information of the staff.

3.) Exit Button – Goes to main menu.

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

XII. Staff Information

1.) Add Button – Shows the Browse Button and Save Button.

2.) Update Button – Update the information of the staff.

3.) Exit Button – Goes to main menu.

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

APPENDIX T
(CURRICULUM VITAE)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

VINCENT FRANCIS A. EUGENIO


ACM Woodstock Homes Phase 3 Block 44 Lot 15
4103 City of Imus, Cavite, Philippines
donachelo23@yahoo.com

PERSONAL INFORMATION

Birthdate : April 23, 1997


Nationality : Filipino
Gender : Male
Civil Status : Single

EDUCATION

2004 – 2014 Jesus Good Shepherd School


2014 – PRESENT Lyceum of the Philippines University – Cavite

SKILLS

 Computer Programming
 Web Designing
 Game Development
 Network Management
 Database Management

CERTIFICATIONS AND ACHIEVEMENT

 SAP Business One


 MTA Exam 98-375: HTML5 Application Development Fundamentals
 Software Engineering Project

TRAININGS AND SEMINARS ATTENDED

 September 2015 Tools and Techniques in Software Development


 January 2017 Computer Hardware Servicing
 February 2017 Image and Skills Enhancement Training (ImSET)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

ROSS CHANDLER M. SALES


Blk 119 Lot 7 Ph 1 Mabuhay City Subd
Dasmarñas Cavite
Xtncazn00@gmail.com

PERSONAL INFORMATION

Birthdate : May 1, 1998


Nationality : Filipino
Gender : Male
Civil Status : Single

EDUCATION

2004 – 2014 Holy Redeemer School


2014 – PRESENT Lyceum of the Philippines University – Cavite

SKILLS

 Video Editing
 System Analyst
 Database Management

CERTIFICATIONS AND ACHIEVEMENT

 SAP Business One


 MTA Exam 98-375: HTML5 Application Development Fundamentals

TRAININGS AND SEMINARS ATTENDED

 February 2017 Image and Skills Enhancement Training (ImSET)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

PATRICK P. BALDOMAR
188 Lotus St San Miguel II Silang, Cavite
baldomarpatrick@yahoo.com

PERSONAL INFORMATION

Birthdate : January 20, 1998


Nationality : Filipino
Gender : Male
Civil Status : Single

EDUCATION

2010 – 2014 Infant Jesus Academy of Silang Inc.


2014 – PRESENT Lyceum of the Philippines University – Cavite

SKILLS

 Computer Programming
 Web Designing
 Game Development
 Database Management
 C# Programming
 Microsoft Office
 Unity 3D

CERTIFICATIONS AND ACHIEVEMENT

 Certification of Completion Sap Business One (Jun 2015 – Mar 2016) Fastrack Solution
Inc.

TRAININGS AND SEMINARS ATTENDED

 February 2017 Image and Skills Enhancement Training (ImSET)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

ALJON T. QUINTAO
Blk 16 Lot 1 David St. Dexteville Classic,
Sabang, Dasmarinas City, Cavite, Philippines
aljonquintao@gmail.com

PERSONAL INFORMATION

Birthdate : October 06, 1997


Nationality : Filipino
Gender : Male
Civil Status : Single

EDUCATION

2010 – 2014 Fiat Lux Academe


2014 – PRESENT Lyceum of the Philippines University – Cavite

SKILLS

 Computer Literate (MS Word, MS PowerPoint, MS Excel)


 HTML5 and CSS
 C# Programming
 Oriented in Networking

CERTIFICATIONS AND ACHIEVEMENT

 SAP Business One


 Networking Fundamentals
 Image and Skill Enhancement Training
 Microsoft Virtual Academy

TRAININGS AND SEMINARS ATTENDED

 Image and Skill Enhancement Training 2017


 Tool and Techniques in Software Development 2015
 Inquirer Career Talk 2017

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

HARVEY L. RAMOS
785 P. Zamora St. Brgy. XI
Amadeo, Cavite
ramosanity@gmail.com

PERSONAL INFORMATION

Birthdate : September 17, 1997


Nationality : Filipino
Gender : Male
Civil Status : Single

EDUCATION

2004 – 2014 Infant Jesus Academy of Silang Inc.


2014 – PRESENT Lyceum of the Philippines University – Cavite

SKILLS

 Video Editing
 System UI/UX
 Computer Literate (MS Word, MS PowerPoint, MS Excel)
 HTML5 and CSS

CERTIFICATIONS AND ACHIEVEMENT

 SAP Business One


 MTA Exam 98-375: HTML5 Application Development Fundamentals
 Networking Fundamentals

TRAININGS AND SEMINARS ATTENDED

 February 2017 Image and Skills Enhancement Training (ImSET)

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE
LYCEUM OF THE PHILIPPINES UNIVERSITY CAVITE

COLLEGE OF ENGINEERING, COMPUTER STUDIES AND


ARCHITECTURE

You might also like