Вы находитесь на странице: 1из 10

Student Enrollment System

Submitted by:

Ablao, Godsea Lebrella, Sean Kenneth

Artoz, Aicy Melano, Henrylyn

Banas, John Paul Oja, Nikko

Carillo, John Ivan Rivera, Jonh Mark

Delos Reyes, Jet Telan, Shair

Felix, Kenner Valladores, June Mark

Hilo, Rossvell B.

Submitted to:

Duero, Mr. Michael Angelo

1|Page
Requirements Document

Date submitted: March 13, 2019

Application title: Student Enrollment System

Purpose: This Windows application opens an Access database with the student

registered in Windows form. The data in the database can be add, edit, view and

delete. The application also compares the total of the students who registered for

the incoming grade 11 of the curriculum K-12.

Program Procedures: In a Windows application, the student list is opened and

the user can view, add, delete and view records as needed. The total of the

student is calculated.

Algorithms, Processing, and Conditions:

1. The user first views a windows application that loads an existing access

database table that includes the information about each students.

2. The user can click add button for the new registered. The record is saved

when the user clicks the save data button.

3. The user can click the delete button on the navigation toolbar to delete an

students. The record is permanently deleted when the user clicks the save data

button on the navigation toolbar.

4. The user can click the view button for the each student registered.

2|Page
Notes and Restrictions:

1. The access database named DB_ESHS.vb file is located on the document the

which is the name of Enroll(Folder).

Comments: The image shown in the directly folder in the project which is the

document.

Use Case Definition

1. The user first view a windows application that loads an existing access

database table that includes the information about each students.

2. The user can click add button for the new registered. The record is saved

when the user clicks the save data button.

3.The user can click the delete button on the navigation toolbar to delete an

students. The record is permanently deleted when the user clicks the save data

button on the navigation toolbar.

4. The user can click the view button for the each student registered.

3|Page
Event Planning Document

Program Name: Developer: Object: Date:

Login Ablao (Guided) frmEnrollment March 12, 2019

Form Artoz (Guided) frmLogin

Student Enrollment Banas (Guided) frmStudentList

Carillo (Minor)

Delos Reyes

(Guided)

Felix (Guided)

Hilo (Major)

Lebrella (Guided)

Melano (Guided)

Oja (Guided0

Rivera (Guided)

Telan (Guided)

Valladores (Guided)

Object Event Trigger Event Processing

frmEnrollment_Load Load Fill the dataset object using the data

source configuration wizard

frmLogin_Load Load To connected of the form of login

when you log immediately

frmStudentList_Load Load To connect or showdialog to the

4|Page
form of enrollment

btnAdd Click Fill the data table

Display the student registered

btnDelete Click Permanently deleted the data

btnView Click To view of the list who registered

btnEdit Click Edit the enrollment system that

register of the incoming grade

school

btnOk Click Approved the system

btnSubmit Click To submit of your data to the form

of student list

Phase 1: Design The form

Step 01

5|Page
Step 02

Step 03

Step 04

6|Page
Step 05

Step 06

Step 07

7|Page
Step 08

Step 09

The Code is completed:


Step 01
Public Class frmlogin

' TODO: Insert code to perform custom authentication using the provided
username and password
' (See http://go.microsoft.com/fwlink/?LinkId=35339).
' The custom principal can then be attached to the current thread's principal
as follows:
' My.User.CurrentPrincipal = CustomPrincipal
' where CustomPrincipal is the IPrincipal implementation used to perform
authentication.
' Subsequently, My.User will return identity information encapsulated in the
CustomPrincipal object
' such as the username, display name, etc.

8|Page
Private Sub Cancel_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles Cancel.Click
Me.Close()
End Sub

Private Sub OK_Click(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles OK.Click
mySelectQuery("SELECT User_Username AS User_Password FROM tbluser WHERE
User_Username='" & TextBox1.Text & "' AND User_Password='" & TextBox2.Text & "'")
Checkresult("Login")
End Sub

Private Sub frmlogin_Load(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles MyBase.Load

End Sub
End Class

Step 08

Public Class FrmEnrollment

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles MyBase.Load
'TODO: This line of code loads data into the 'Db_ESHSDataSet.SHSEnroll'
table. You can move, or remove it, as needed.
Me.SHSEnrollTableAdapter.Fill(Me.Db_ESHSDataSet.SHSEnroll)
Me.BackgroundImage =
System.Drawing.Image.FromFile("35280310_303648850173829_8313145763911696384_n.jpg"
)

End Sub

Private Sub TextBox9_TextChanged(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles TextBox9.TextChanged

End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles Button1.Click
MessageBox.Show("You Successfully fill out")
FrmEnrollment.Visible = True
frmStudent.ShowDialog()

End Sub

Private Sub CheckedListBox1_SelectedIndexChanged(ByVal sender As


System.Object, ByVal e As System.EventArgs)

End Sub

Private Sub Label20_Click(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles Label20.Click

9|Page
End Sub

Private Sub txtStudentID_TextChanged(ByVal sender As System.Object, ByVal e As


System.EventArgs) Handles txtStudentID.TextChanged

End Sub

Private Function FormatNumber() As Object


Throw New NotImplementedException
End Function

Private Sub FillByToolStripButton_Click(ByVal sender As System.Object, ByVal e


As System.EventArgs) Handles FillByToolStripButton.Click
Try
Me.SHSEnrollTableAdapter.FillBy(Me.Db_ESHSDataSet.SHSEnroll)
Catch ex As System.Exception
System.Windows.Forms.MessageBox.Show(ex.Message)
End Try
End Sub
End Class

10 | P a g e

Вам также может понравиться