Sie sind auf Seite 1von 21

A PROJECT ON

ADDMISSION MANAGEMENT

Submitted to G.N.D.U. for the partial Fullfillment of


P.G.D.C.A (2008-09)

Submitted At A.V.M COLLEGE


Batala

Supervised by: Submitted by


KANCHAN AGNIHOTRI Pawanpreet Kaur
COMPUTER DEPARTMENT Deepika Mahajan
CERTIFICATE

It is to certify that the project work entitled

ADMISSION MANAGEMENT

Which is submitted by me in the partial fulfillment of the requirement?

For award of the degree of P.G.D.C.A. In the Directorate of Distance

education is an authentic work carried out by me at “A.V.M

COLLEGE BATALA” supervised by madam KANCHAN AGNIHOTRI

The matter embedded in this work has not been submitted earlier

For the award of any other degree.

(Signature & Seal) NAME – Pawanpreet Kaur

Deepika Mahajan
Acknowledgment
No task is single man efforts. Co-operation and Co-Ordination of
various people at various places go into the successful implementation. It is a
great pleasure to have the opportunity to extend my heart felt thanks
to everybody who helped me through the successful completion of this
project. I would like to express my sincere thanks to Madam
Kanchan Agnihotri.
I am thankful to the entire teaching staff of the
“A.V.M College Batala”, who have always been known for their super
performance and who have helped me in accomplishing the project.
In this respect, I am in debate to my family members,
who with their unflinching faith patiently shared the joys of success
& pains of failure with me. No words will suffice to describe the
measure of tolerance and accommodation shown by the member of my
family without whose ever-ready backing. I would not have being able
to carry out any task calmly and confidently. He poured over inch of
the man script with pains taking attentions to detail and made semi-
infinite number of helpful suggestions , due to which I am able to
Complete this project.
Pawanpreet
Kaur
Deepika Mahajan
BIODATA OF PROJECT GUIDE

NAME :--- KANCHAN AGNIHOTRI

QUALIFICATION :--- MCA

ADDRESS :-- BATALA

PHONE NO :--- 9815011910

WORKING AS :-- LECTURER


STUDENT’S PROFILE

NAME : MISS.PAWANPREET

FATHER’S NAME : SR.DILJEET SINGH

ACADEMIC QUALIFICATION: GRADUATE IN SCIENCE

PROFESSIONAL QUALIFICATION: PGDCA

HOBBIES : PROGRAMMING INVB,

& PLAYING

BADMINTON, CARDS,

MUSIC, DANCE AND

NET SUFFERING.
EXAMINER’S CERTIFICATE

It is to certify that the project work entitled

“ADMISSION MANAGEMENT”

Which is submitted by me in the partial fulfillment of the requirement

for award of the degree of P.G.D.C.A in the Directorate of Distance

education is an authentic work carried out by me at “A.V.M Batala”

under the supervision and guidance Of Madam Kanchan Agnihotri The

matter embedded in this work has not been submitted earlier for the

award of any other degree.

PROJECT GUIDE’S SIGNATURE EXAMINER’S SIGNATURE

____________________ ______________________
About Visual Basic

Visual basic is an easy and powerful programming language for developing


window based application. It is the product of Microsoft Corporation and its
modification is BASIC. Visual basic uses the graphical user interface for
creating robust and powerful application. Visual basic contains hundered
statements, functions, and controls, which makes visual basic language for
graphical user interface development. Although V.B. is not a true object-
oriented programming language in the strictest sense, Visual Basic
nevertheless has an object-oriented philosophy. it is called an event driven
language because each object can react to different events such as mouse
click.
DAO:-
Database access objects enable to use programming language to access and
manipulate data in database & to manage database.
ADO:-
Visual Basic supports active data objects, which can be used to access any
data source, on-relational databases.
Active-X Controls:-
Visual Basic provides various active-x controls like command button, list
box, combo box etc.which are used to handle data efficiently through forms.
Active-x controls created with Visual basic have events, data binding
support and property pages etc.
OLE:-
Object Linking & embedding is at the center of most of the changes. it is an
object browser enables you to view the objects, properties, methods, and
procedures contained in Visual; Basic modules, OLE controls, and OLE
applications.
Microsoft Access:-
MS ACCESS is a database management system program provided as a part
of the Microsoft office. But it is an RDBMS (relational database
management system) an RDBMS consists of tables which store all the data
in the structured way (rows are called records and columns are called fields)
which can be related together based on a primary key (a field having unique
value). With the help of this program even a beginner can create small
applications which require the generations of reports (such as locating
specific information).from the entered data. These programs provide the user
with a graphical user interface. Which make things easier and simpler by
providing computer commands in the form of graphical icon.
Private Sub Command1_Click()
Text2.PasswordChar = "*"
Dim A As Variant
Dim B As Variant
A = (Text1.Text)
B = (Text2.Text)
If A = "aman" Then
If B = "agnihotri" Then
Unload Me
Load Form2
Form2.Show

Else
MsgBox "PASSWORD IS INCORRECT"
Text2.SetFocus
SendKeys "{HOME}+{END}"
End If
Else
MsgBox "The Username or Password is Incorrect"
Text1.SetFocus
SendKeys "{HOME}+{END}"
End If
End Sub

Private Sub Command2_Click()


End
End Sub

Private Sub Command1_Click()


DataReport1.Show
End Sub
Private Sub Command2_Click()
DataReport2.Show
End Sub

Private Sub Command3_Click()


DataReport3.Show
End Sub

Private Sub Command4_Click()


End
End Sub

Private Sub Label2_Click()


Form3.Show
End Sub

Private Sub Label3_Click()


Form4.Show
End Sub

Private Sub Label4_Click()


Form5.Show
End Sub

Private Sub Label5_Click()


Form6.Show
End Sub

Private Sub Command1_Click()


Ad.Recordset.AddNew
MsgBox ("NOW FILL THE NEW RECORD")

End Sub

Private Sub Command2_Click()


Ad.Recordset.Update
Ad.Recordset.MoveFirst
MsgBox ("THE RECORD IS SAVED")

End Sub

Private Sub Command3_Click()


On Error Resume Next
Ad.Recordset.Delete
MsgBox "RECORD IS SUCESSFULLY DELETED"

End Sub

Private Sub Command4_Click()


On Error Resume Next
Ad.Recordset.MovePrevious
End Sub

Private Sub Command5_Click()


On Error Resume Next
Ad.Recordset.MoveNext
End Sub

Private Sub Command6_Click()


Ad.Recordset.MoveFirst
End Sub

Private Sub Command7_Click()


On Error Resume Next
Ad.Recordset.MoveLast

End Sub

Private Sub Label8_Click()


Form2.Show
End Sub
Private Sub Command1_Click()
Ad.Recordset.MovePrevious
End Sub

Private Sub Command2_Click()


Ad.Recordset.MoveNext
End Sub

Private Sub Command3_Click()


Ad.Recordset.MoveFirst
End Sub

Private Sub Command4_Click()


Ad.Recordset.MoveLast
End Sub

Private Sub Command5_Click()


Ad.Recordset.AddNew
MsgBox ("NOW FILL THE RECORD")
End Sub

Private Sub Command6_Click()


Ad.Recordset.Update
Ad.Recordset.MoveFirst
MsgBox ("RECORD IS SAVED")

End Sub

Private Sub Label4_Click()


Form2.Show
End Sub

Private Sub Adodc1_WillMove(ByVal adReason As ADODB.EventReasonEnum,


adStatus As ADODB.EventStatusEnum, ByVal pRecordset As ADODB.Recordset)

End Sub

Private Sub Command1_Click()


Ad.Recordset.MovePrevious
End Sub

Private Sub Command2_Click()


Ad.Recordset.MoveNext
End Sub

Private Sub Command3_Click()


Ad.Recordset.MoveFirst
End Sub

Private Sub Command4_Click()


Ad.Recordset.MoveLast
End Sub

Private Sub Command5_Click()


Ad.Recordset.AddNew
MsgBox ("NOW FILL THE RECORD")

End Sub

Private Sub Command6_Click()


Ad.Recordset.Update
Ad.Recordset.MoveFirst
MsgBox ("RECORD IS SAVED")
End Sub

Private Sub Label5_Click()


Form2.Show
End Sub
Private Sub Label2_Click()
Form2.Show
End Sub

Das könnte Ihnen auch gefallen