31
Project file Of Housing Loan Submitted to Panjab University,Chandigarh In Comprehensive fulfillment for the Requirement of the Degree *Bachelor of arts in Information Technology* Submitted To : SubmittedBy:

Housing Loan Project

Embed Size (px)

Citation preview

Page 1: Housing Loan Project

Project file Of Housing LoanSubmitted to Panjab University,Chandigarh In Comprehensive fulfillment for the Requirement of the Degree*Bachelor of arts in Information Technology*

Submitted To : SubmittedBy:Miss Samandeep kaur Neha RanaProject Advisor 14510000392

Master Tara Singh Memorial College ( For women)

(PANJAB UNIVERSITY)

Page 2: Housing Loan Project

ACKNOWLEDGEMENTOn every step there is a need of guidance,support and motivation.This encourages the person to give their best performance and help in reaching their goals.

This project is essentially prepared in the partial fulfillment of the result of B.A FINAL Examination.I wish to take this opportunity to express my gratitude to all those who have directly or indirectly helped me in completing this project.

First of all,I would like to thank our worthy Principal Dr. (Mrs.)Parveen Kaur Chawla for helping me to avail the best facilities available and for motivating me at every step.I would also like to thank my project guide Miss Samandeep Kaur who proposed me this project and provided me with her valuable guidance,encouragement and suggestion throughout the period till competition. PLACE :LUDHIANA

Page 3: Housing Loan Project

CERTIFICATION

This is to certify that student of B.A FINAL, have worked sincerely on this project which is in accordance with the partial fulfillment of PANJAB UNIVERSITY (CHANDIGARH) B.A FINAL INFORMATION TECHNOLOGY.

Signature of Project Guide: Head of Department: Miss Samandeep kaur Miss Asha Arora

Page 4: Housing Loan Project

INTRODUCTION OF VISUAL BASIC

Microsoft Visual Basic is a powerful development platform developed by Microsoft that can be used to create feature-rich application for the windows 97 and Windows NT Operating system quickly and easily.It is based on an event driven programming model.It is primarily a visual design environment.

Visual basic application is created by designing the form that make up the interface,adding code to the forms and the object such as buttons and text boxes on them,and adding any required support code is additional modules.

Visual basic consists of two part viz. “Visual” and “Basic”.The “Visual” part refers to the method used to create the graphical user interface:rather than writing numerous lines of code to describe the appearance and location of interface elements.This part makes Visual Basic a true RAD (RAPID APPLICATION DEVELOPMENT) tool.The “basic” part refers to the BASIC language since visual is a descendant of BASIC>

(Beginners All-Purpose symbolic instruction code), which was often the first language that programmers used to learn in order to become familiar with programming basics before switching to any other powerful language.Visual Basic has envolved from the original BASIC language and now contains several hundred statements,functions, and keywords, many of which relate directly to the windows GUI.

Visual Basic is not just a language, but is an INTEGRATED DEVELOPMENT ENVIRONMENT. An IDE is basically a term commonly is used in the programming world to descried the interface and environment where u can develop ,run,test and debug your applications.

There are many features of Visual Basic which are discussed as follows:

Event-driven programming language Object orientation

Page 5: Housing Loan Project

GUI /windows Environment Internet based application

Housing Loan Project

This project is designed to collect the information from the applicant i.e. the person who is applying for loan.

The user had to fill all the information and then click on continue button to bring the next form.

It will collect the guarantor details. The user can find out the customers

eligibility by clicking on calculate button

Page 6: Housing Loan Project

CODING

Page 7: Housing Loan Project

Form1

Private Sub Command1_Click()If Text1.Text = "" Or Text2.Text = "" Or Text8.Text = "" ThenMsgBox "Please fill the details properly", vbExclamation, "Details"ElseForm3.HideForm2.ShowEnd IfEnd Sub

Private Sub Text8_Lost_focus()If Text8.Text >= 60 ThenMsgBox " sorry you are not eligible ", vbInformation, " sorry "EndEnd If

End Sub

Page 8: Housing Loan Project

Form2

Private Sub Command1_Click()Form2.HideForm1.ShowEnd Sub

Private Sub Continue_Click()If Text1.Text = "" Or Text3.Text = "" Or Text6.Text = "" ThenMsgBox "Please fill the details properly", vbExclamation, "Details"ElseForm2.HideForm1.ShowEnd IfEnd Sub

Private Sub Text6_LostFocus()If Text6.Text > 15 Then

Page 9: Housing Loan Project

MsgBox "Sorry! Enter the term within 15 yrs ", vbInformation, "Sorry"Text6.Text = ""Text6.SetFocusEnd IfEnd Sub

Form3

Private Sub Command1_Click()Form1.HideForm4.ShowMsgBox "Please click on calculate to find out your eligibility!", vbInformation, "calculation"End Sub

Private Sub Command2_Click()Form1.HideForm3.ShowEnd Sub

Private Sub Text6_LostFocus()If Text6.Text <= 5000 ThenMsgBox "Sorry this guarantor is not eligible", vbInformation, "Sorry"Text1.Text = ""Text2.Text = ""Text3.Text = ""Text4.Text = ""Text5.Text = ""

Page 10: Housing Loan Project

Text6.Text = ""End IfEnd Sub

Form4

Private Sub Command1_Click()Form4.HideForm5.ShowMsgBox " Please click on calculate to find out your eligibility !", vbInformation, "calculation"

End Sub

Private Sub Command2_Click()Text1.Text = Form3.Text1.TextText3.Text = Form2.Text6.TextIf Text3.Text = "5" ThenText5.Text = "18.25"End IfIf Text3.Text = "6" ThenText5.Text = "17.25"End IfIf Text3.Text = "7" ThenText5.Text = "16"End If

Page 11: Housing Loan Project

If Text3.Text = "8" ThenText5.Text = "15.45"End IfIf Text3.Text = "9" ThenText5.Text = "14.25"End IfIf Text3.Text = "10" ThenText5.Text = "13"End IfIf Text3.Text = "11" ThenText5.Text = "12.65"End IfIf Text3.Text = "12" ThenText5.Text = "11.55"End IfIf Text3.Text = "13" ThenText5.Text = "11.42"End IfIf Text3.Text = "14" ThenText5.Text = "11"End IfIf Text3.Text = "15" ThenText5.Text = "11"End Ifnetsal = Val(Form3.Text5.Text) / 2a = Val(Form2.Text1.Text)elig = a * 80 / 100 / 1000 * Val(Text5.Text)Text2.Text = a * 80 / 100Text4.Text = eligEnd Sub

Page 12: Housing Loan Project

Private Sub command4_click()Form4.HideForm3.ShowEnd Sub

Form5

Private Sub Command2_Click()MsgBox " you are interested to take loan - thankyou ", vbInformation, "thanks"Form5 .HideForm6 .ShowForm6.Text1.Text = Form1.Text1.TextForm6.Text2.Text = Form1.Text3.TextForm6.Text3.Text = Form1.Text11.TextForm6.Text4.Text = Form1.Text9.TextForm6.Text5.Text = Form1.Text4.Text + " " + Form1.Text5.Text + " " + Form1.Text6.TextForm6.Text6.Text = Val(Form1.Text7.Text)Form6.Text7.Text = Val(Form2.Text1.Text)Form6.Text8.Text = Form2.Text2.Text + " developed by:-"Form2.Text4.Text " contact no. :- " + Form2.Text5.TextForm6.Text9.Text = "bank " + Form2.Text7.Text + " branch :- " + Form2.Text8.Text + " sb/ca - a/c no. :-"Form2.Text9.Text " balance :- " + Form2.Text10.TextForm6.Text11.Text = "name :- " + Form2.Text12.Text + " contact no. :- " + Form2.Text13.Text

Page 13: Housing Loan Project

Form6.Text12.Text = Text = " name :- " + Form3.Text1.Text + " address " + Form3.Text2.Text + " contact no.:-"Form3.Text6.TextForm6.Text13.Text = " employer's address :- " + Form3.Text3.Text + " designation :- " + Form3.Text4.Text + " net salary " + Form3.Text5.Text

Form6.Text14.Text = Val(Form4.Text2.Text)Form6.Text15.Text = Val(Form4.Text3.Text)Form6.Text16.Text = Val(Form4.Text6.Text)Form6.Text17.Text = Val(Form5.Text1.Text)Form6.Text18.Text = Val(Form5.Text2.Text)End Sub

Private Sub Command3_Click()Form5.HideForm4.Text2End Sub

Page 14: Housing Loan Project

OUTPUT

Page 15: Housing Loan Project
Page 16: Housing Loan Project
Page 17: Housing Loan Project
Page 18: Housing Loan Project
Page 19: Housing Loan Project
Page 20: Housing Loan Project
Page 21: Housing Loan Project
Page 22: Housing Loan Project
Page 23: Housing Loan Project
Page 24: Housing Loan Project
Page 25: Housing Loan Project