Pune District Education Association
Institute of Technology, Hadapsar, Pune
TYCO SEMESTER-5th
Microproject On
“Society Management System”
ADVANCE JAVA
PROGRAMMING(22517)
Sr.no Student name Roll no.
1. ANUSHKA 38
HAWALDAR
2. UDAY 37
NITNAWARE
Submitted To :- Dumbre. S. A
Pune District Education Association
Institute of Technology, Hadapsar, Pune
ANNEXURE-1
Team Members –
Sr.no Student name Roll Enrollment
no. No.
1. ANUSHKA 38 2001450009
HAWALDAR
2. UDAY NITNAWARE 37 2001450007
1.1 Abstract
Daily life in city areas has important things to deal with housing society management. Our day to
day needs such as Water supply, Electricity, Security and many more things which directly or
indirectly plays the vital role in residential life, comes under Housing Society Management. In
most of the cases, Society management practices a traditional way of communication. This
certainly has some limitations and disadvantages. Daily notices, monthly meetings, cultural
events, miscellaneous contacts for daily needs, security alerts, high priority communication and
many others which may not be conveyed properly in current scenario as most of the things are
getting handled manually. It lacks transparency. To overcome the problems occurring due to this
time lagging manual system, an automated system needs to be developed to reduce the human
efforts.
1.2 Introduction
In society all jobs are decided in meetings and maintenance bills, contact no of members are
noted in the papers. There is no automated system for doing all the things that generally happen
in society so that members can come to know what is happening in society. This system of
maintaining a society is made in such a way so that the most common problem faced by
residential societies are solved. This system is a cloud-based system to manage the day - to - day
Pune District Education Association
Institute of Technology, Hadapsar, Pune
activities of any cooperative housing society. They need the coordination between the respective
management societies coupled with the vendors which provide these services so that the
appropriate convenience can be provided. The main functionality of this project is that there are
an online billing and accounting (payment gateway integration, income & expense tracking,
etc.).In this system, the bills, receipts, and vouchers are created in an easy manner also the
system is user-friendly
1.3 Action plan: -
Sr Details of activity Planned Planned end Name of responsible
no. start date Date team members
1 Topic search 30-08-22 03-09-22 Aniket,Shreya
2. Project proposal 05-09-22 19-09-22 Aniket,Shreya
creation
3. Details information 22-09-22 12-10-22 Aniket,Shreya
gathering for
project
4. Developing Project 14-10-22 23-10-22 Aniket,Shreya
diagram
5. Execution & 25-10-22 11-11-22 Aniket,Shreya
testing of project
6. Error Renovation 14-11-22 25-11-22 Aniket,Shreya
7. Project report 5-12-22 15-12-22 Aniket,Shreya
creation
1.4 Resources required:-
Pune District Education Association
Institute of Technology, Hadapsar, Pune
Sr. Name of Resources Specification Quantity Remark
No.
1. Operating system Windows 2010 1
2. Microsoft word 2016 1
3. Search Engine Google 1
Society Management System:-
In the existing housing society management system a traditional way of communication is used
which include a common notice board system operated by responsible society member. The data
is stored in the files and the processing of the data is done manually and the report generation is
slow. In notice board system one has to take whole responsibility to operate and maintain the
notice board. It creates dependability with the specific person. Sometimes the person has to
compromise with his own time schedule for these common activities. It is observed that
complaints by society members are neglected by higher management because one has to take
constant follow up until the issue gets solved.
Software Requirements:
Windows X, Windows 7(ultimate, enterprise)
Visual studio 2010
Hardware Components:
Processor – i3
Hard Disk – 256 GB
Memory – 8GB RAM
Code:-
Pune District Education Association
Institute of Technology, Hadapsar, Pune
import java.awt.*;
import java.awt.event.*;
import java.applet.*;
import javax.swing.*;
import javax.swing.table.DefaultTableModel;
public class Project
{
public static void main(String args[])
{
new MyTab();
}
}
class MyTab extends JFrame
{
private int model;
JTable table;
JTextField t1,t2,t3;
JButton b1,b2,b3;
JPanel p1;
MyTab()
{
setTitle("Society MAngement System");
setSize(700,700);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);
t1 = new JTextField(20);
t2 = new JTextField(20);
t3 = new JTextField(20);
JTextField t4 = new JTextField(20);
b1 = new JButton("Add");
b2 = new JButton("Update");
b3 = new JButton("Delete");
JButton b4 = new JButton("UP");
p1 = new JPanel();
String data[][]={{"101","ajay","1000",""},{"301","Amit","700",""}};
String column[]={"Flat No","Name","deposited money","Other"};
DefaultTableModel model = new DefaultTableModel(data, column);
table = new JTable(model);
Pune District Education Association
Institute of Technology, Hadapsar, Pune
JScrollPane j= new JScrollPane(table);
add(j);
//add(j);
add(p1);
setLayout(new FlowLayout());
p1.setLayout(new GridLayout(4,4));
p1.add(new JLabel("Flat no"));
p1.add(t1);
p1.add(b1);
p1.add(new JLabel("Name"));
p1.add(t2);
p1.add(b2);
p1.add(new JLabel("Deposite"));
p1.add(t3);
p1.add(b3);
p1.add(new JLabel("Orher"));
p1.add(t4);
p1.add(b4);
b1.addActionListener(new ActionListener(){
@Override
public void actionPerformed(ActionEvent e)
{
if(t1.getText().toString().isEmpty() || t2.getText().toString().isEmpty() || t3.getText().toString().isEmpty())
{
JOptionPane.showInputDialog(null,"Fill Blank","Error",JOptionPane.ERROR_MESSAGE);
}
int flatno=Integer.parseInt(t1.getText());
String name= t2.getText().toString();
int deposited=Integer.parseInt(t3.getText());
String other= t4.getText().toString();
Object[] newRow={flatno,name,deposited,other};
model.addRow(newRow);
}});
}
}
Pune District Education Association
Institute of Technology, Hadapsar, Pune
Output :-
Pune District Education Association
Institute of Technology, Hadapsar, Pune
Pune District Education Association
Institute of Technology, Hadapsar, Pune