You are on page 1of 7

EXNO:10 RECRUITMENT SYSTEM

PROBLEM STATEMENT:

The aim of the online recruitment system is to facilitate job opening with
qualified and suitable candidates. Using these system candidates can attend online exams and
interview. The candidates can enter their details and they are selected based on their marks and
interview rounds. If they are qualified, the recruiters will select the candidate. Finally the
appointment order is issued to the selected applicant.

DB DESIGN:

DETAILS:

SCORE:
RECRUITMENT SYSTEM

USECASE DIAGRAM:

registration

online test
appplicant company administrator

technical round

gd round

hr round

result

CLASS DIAGRAM:
ACTIVITY DIAGRAM:

SEQUENCE DIAGRAM

DEPLOYMENT DIAGRAM

application server
db server
LAYERED ARCHITECTURE DIAGRAM

MDIFORM1:
Private Sub mnuapplicantinfo_Click()
Form1.Show
End Sub
Private Sub mnuinterview_Click()
Form3.Show
End Sub
Private Sub mnuonlinemark_Click()
Form2.Show
End Sub

FORM1:
Dim db As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim query As String
Private Sub cmdcancel_Click()
Unload Form1
End Sub
Private Sub Cmdregister_Click()
query = "insert into details(name,age,course,degree,cgpa,companyname)values('" & Txtname &
"','" & Txtage & "','" & Txtcourse & "','" & txtdegree & "','" & Txtcgpa & "','" &
Txtcompanyname & "')"
db.Execute (query)
Form2.Show
End Sub
Private Sub Form_Load()
db.ConnectionString = "provider=Microsoft.Jet.OLEDB.4.0;Data Source=Z:\case
tools/online.mdb;persist Security info=False"
db.Open
End Sub

FORM2:
Dim db As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim query As String
Private Sub Cmdback_Click()
Form1.Show
End Sub
Private Sub cmdnext_Click()
query = "insert into score(registerno,name,mark)values('" & Txtregisterno & "','" & Txtname &
"','" & Txtmark & "')"
db.Execute (query)
If (Txtmark >= 50) Then
Form3.Show
Else
MsgBox ("you are not selected")
Unload Form2
End If
End Sub
Private Sub Form_Load()
db.ConnectionString = "provider=Microsoft.Jet.OLEDB.4.0;Data Source=Z:\case
tools/online.mdb;persist Security info=False"
db.Open
End Sub

FORM3:
Dim db As New ADODB.Connection
Dim rs As New ADODB.Recordset
Dim query As String
Private Sub Cmddone_Click()
If chktechnicalround.Value = 1 Then
If chkgdround.Value = 1 Then
If chkhrround.Value = 1 Then
MsgBox ("you are selected!!")
Else
MsgBox ("you are not selected")
End If
End If
End If
End Sub
Private Sub cmdok_Click()
query = "select * from score where registerno = " & Txtregisterno & ""
Set rs = db.Execute(query)
Txtmarks.Text = rs("mark")
End Sub
Private Sub Form_Load()
db.ConnectionString = "provider=Microsoft.Jet.OLEDB.4.0;Data Source=Z:\case
tools/online.mdb;persist Security info=False"
db.Open
End Sub

OUTPUT
MDIFORM1
FORM1: FORM2:

FORM3:

You might also like