ABSTRACT:

Rural water supply schemes in India are generally designed for domestic uses. However, the multiple water use priorities of poor rural households in order to reduce their hardship and enhance food production, health and income mean that in water-scarce areas, domestic water use can run into conflict with productive water use. The failure of water supply agencies to design a water supply system for multiple uses results in communities not being able to realize the full potential of water as a social good. This chapter identifies various domestic and productive water requirements of rural households. This project is used to make public more benefited. They can register to book water. They consist of the modules like sign in, register, fetch data, filter data and distribution. This helps the user to find the water availability and quantity required.

EXISTING SYSTEM:

This project helps the public to book water online. There is no such project existing to develop.

PROPOSED SYSTEM:

This project reduce the public work to book in terms of scarcity. This project helps to find the requirement of the water in a town.

ARCHITECTURE:




SAMPLE CODE:

Signup.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace kaveri_water_supply
{
    public partial class signup : Form
    {
        public signup()
        {
            InitializeComponent();
        }

        private void button3_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            login lg = new login();
            lg.Show();
            this.Hide();
        }

        private void button1_Click(object sender, EventArgs e)
        {

            if (textBox1.Text == "" || textBox2.Text == "" || textBox3.Text == "" || textBox4.Text == "" || textBox5.Text == "" || textBox6.Text == "")
            {
                MessageBox.Show("Please fill all the details");
            }
            else
            {

                SqlConnection connec = new SqlConnection(@"Data Source =VENKAT-KRISHIV\ABC; user id=venkat;;password=venkat;Initial Catalog = ChennaiMetro");
                connec.Open();
                SqlCommand cmnd = new SqlCommand(@"insert into signup(fn,ln,mbno,un,pwd,cnpwd) values('" + textBox1.Text + "','" + textBox2.Text + "','" + textBox3.Text + "','" + textBox4.Text + "','" + textBox5.Text + "','" + textBox6.Text + "')", connec);
                if (textBox5.Text == textBox6.Text)
                {
                    int x = cmnd.ExecuteNonQuery();
                    if (x > 0)
                    {
                        MessageBox.Show("Data entered sucessfully");
                        signup day = new signup();
                        day.Show();
                        this.Hide();
                    }
                }
                else
                {
                    MessageBox.Show("please check the pwd");
                }
                connec.Close();
            }
        }

        private void button2_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void label2_Click(object sender, EventArgs e)
        {

        }

        private void signup_Load(object sender, EventArgs e)
        {

        }

        private void label3_Click(object sender, EventArgs e)
        {

        }

        private void label5_Click(object sender, EventArgs e)
        {

        }

        private void label4_Click(object sender, EventArgs e)
        {

        }

        private void label6_Click(object sender, EventArgs e)
        {

        }

        private void label7_Click(object sender, EventArgs e)
        {

        }
    }
}


Loginpage.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;

namespace kaveri_water_supply
{
    public partial class login : Form
    {
        public login()
        {
            InitializeComponent();
        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {

        }

        private void button1_Click(object sender, EventArgs e)
        {
            string a = textBox1.Text;
            string b = textBox2.Text;
            if ((a == "manju") && (b == "manju"))
            {
                SELECT info = new SELECT();
                info.Show();
                this.Hide();

            }
            else
            {
                MessageBox.Show("invalid login");
            }
        
        }

        private void button2_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        private void button3_Click(object sender, EventArgs e)
        {
            this.Close();

        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            signup su = new signup();
            su.Show();
            this.Hide();

        }
    }
}


Fetch data.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace kaveri_water_supply
{
    public partial class FetchData : Form
    {
        public FetchData()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection connc = new SqlConnection(@"Data Source =VENKAT-KRISHIV\ABC; user id=venkat;;password=venkat;Initial Catalog = ChennaiMetro");
            connc.Open();
            SqlCommand cmd = new SqlCommand(@"select * from  Daily", connc);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);

            dataGridView1.DataSource = ds.Tables[0];

            
        }

        private void FetchData_Load(object sender, EventArgs e)
        {

        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            SELECT sel = new SELECT();
            sel.Show();
            this.Hide();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            this.Close();

        }

        private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {

        }
    }
}


Filter data.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace kaveri_water_supply
{
    public partial class FetchData : Form
    {
        public FetchData()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            SqlConnection connc = new SqlConnection(@"Data Source =VENKAT-KRISHIV\ABC; user id=venkat;;password=venkat;Initial Catalog = ChennaiMetro");
            connc.Open();
            SqlCommand cmd = new SqlCommand(@"select * from  Daily", connc);
            SqlDataAdapter da = new SqlDataAdapter(cmd);
            DataSet ds = new DataSet();
            da.Fill(ds);

            dataGridView1.DataSource = ds.Tables[0];

            
        }

        private void FetchData_Load(object sender, EventArgs e)
        {

        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            SELECT sel = new SELECT();
            sel.Show();
            this.Hide();
        }

        private void button2_Click(object sender, EventArgs e)
        {
            this.Close();

        }

        private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
        {

        }
    }
}


distribution.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace kaveri_water_supply
{
    public partial class DAILY : Form
    {
        public DAILY()
        {
            InitializeComponent();
        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void DAILY_Load(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e)
        {
            SELECT sel = new SELECT();
            sel.Show();
            this.Hide();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if ( textBox3.Text == "" && textBox4.Text == "" && textBox5.Text == "")
            {
                MessageBox.Show("Please fill all details");
            }
            else
            {
                SqlConnection connc = new SqlConnection(@"Data Source =VENKAT-KRISHIV\ABC; user id=venkat;;password=venkat;Initial Catalog = ChennaiMetro");
                connc.Open();
                SqlCommand cmd = new SqlCommand(@"insert into Daily(dateandtime,fromplace,toplace,quantity,incharge,ph_number) values('" + dateTimePicker1.Text + "','" + comboBox2.Text + "','" + comboBox1.Text + "','" + textBox5.Text + "','" + textBox3.Text + "','" + textBox4.Text + "')", connc);
                int x = cmd.ExecuteNonQuery();
                if (x > 0)
                {
                    MessageBox.Show("Data entered sucessfully");
                    SELECT day = new SELECT();
                    day.Show();
                    this.Hide();
                }
                else
                {
                    MessageBox.Show("Data not entered sucessfully");
                }


            }
        }
        private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
        {

        }
           
        }
        
    }



Selection page.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;

namespace kaveri_water_supply
{
    public partial class DAILY : Form
    {
        public DAILY()
        {
            InitializeComponent();
        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void DAILY_Load(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e)
        {
            SELECT sel = new SELECT();
            sel.Show();
            this.Hide();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            if ( textBox3.Text == "" && textBox4.Text == "" && textBox5.Text == "")
            {
                MessageBox.Show("Please fill all details");
            }
            else
            {
                SqlConnection connc = new SqlConnection(@"Data Source =VENKAT-KRISHIV\ABC; user id=venkat;;password=venkat;Initial Catalog = ChennaiMetro");
                connc.Open();
                SqlCommand cmd = new SqlCommand(@"insert into Daily(dateandtime,fromplace,toplace,quantity,incharge,ph_number) values('" + dateTimePicker1.Text + "','" + comboBox2.Text + "','" + comboBox1.Text + "','" + textBox5.Text + "','" + textBox3.Text + "','" + textBox4.Text + "')", connc);
                int x = cmd.ExecuteNonQuery();
                if (x > 0)
                {
                    MessageBox.Show("Data entered sucessfully");
                    SELECT day = new SELECT();
                    day.Show();
                    this.Hide();
                }
                else
                {
                    MessageBox.Show("Data not entered sucessfully");
                }


            }
        }
        private void comboBox2_SelectedIndexChanged(object sender, EventArgs e)
        {

        }
           
        }
        
    }



MODULES DESCRIPITION:

A module is a part of a program. Programs are composed of one or more independently developed modules that are not combined until the program is linked. A single module can contain one or several routines. The project contains the following main modules.
• SIGNUP MODULE
• LOGIN MODULE
• FETCH DATA MODULE
• FILTER DATA MODULE
• DISTRIBUTION MODULE
• SELECTION MODULE

SIGNUP MODULE:

This module lists out the details of the user. The entire website is handled only the admin and the user has the separate username and password to access the website user only has the control to view all the reports generated in the website. Fields Required in this module are listed below:
• First Name : Name of the admin
• Last Name : Name of the username
• Mobile : Mobile for admin
• Username :Name of the user
• Password : Password for admin
• Confirm password :confirm the password for admin
• Security question : Assign the security question
• Security answer : Answer for admin

LOGIN MODULE:

In Login Module, it acts as a very great security feature to the application if the user uses proper user id and password it enters in to application or else it returns back in to the authentication login page indicating that the user is invalid. Fields required in this module are listed below
• Username: name of the user
• Password: password for user

FETCH DATA MODULE:

The fetch data module is used to display the Entire data of the supplies.


ISO certified - Mini projects for eee:

KaaShiv Offers, Mini project for eee. mini project for eee includes Block Chain, Artificial Intelligence, Machine Learning, Python and R programming, Application Development, Web designing and Networking . This internship includes the topics related to mini projects for eee 2nd year, mini projects for eee 3rd year with circuit diagram.This company runs by,

    • 10 Years Awarded Microsoft Most Valuable Professional
    • Google Recognized Experts
    • Cisco Recognized Certified Experts
    • Microsoft Awarded Certified Experts
    • Robotics Experts
    • HCL Technologies Awarded Expert

Trainers at KaaShiv InfoTech are real-time Software / IT professionals worked in leading MNCs like,
    • CTS,
    • Wipro,
    • TCS,
    • Infosys,
    • Accenture and
    • Mindtree.

The Course curriculum for mini projects for eee is carefully researched and prepared by professionals from MNC to meet the demands expected in the IT industry. After completing the mini project Training in Chennai at KaaShiv Infotech, students will be familiar with the Software development process followed in IT industry. Below are some of the insights of our mini projects program for eee.

    • Real-time project development and Technology Training by Microsoft Awarded Most Valuable Professiona
    • mini projects for eee students involves Full practical training
    • Hardware and software tools full support
    • Technology training
    • Placement training
    • Full documentation and report analysis
    • R & D projects
    • Industrial exposure
    • Endorsing Corporate skills

WHAT IS MINI PROJECT ?

    • The mini Projects plays a crucial role in the teaching-learning process.
    • It is also a way of identifying the ability of the student to perform an industrial project or applied research linked to the knowledge discipline.
    • A project is defined as an effort to create or modify a specific product or service.
    • Projects are temporary work efforts with a clear beginning and end.
    • mini project (or program) any undertaking, carried out individually or collaboratively and possibly involving research or design, that is carefully planned (usually by a project team) to achieve a particular aim.

WHAT ARE THE BENEFITS GAINED BY DOING MINI PROJECT :

    • mini projects if done well can add a lot of credibility to your profile.
    • And especially your mini projects building experience can help you perform well in core job placements & higher studies admission interviews.

TIPS TO SELECT GOOD MINI PROJECTS:

    • Analyze the current trends
    • Focus your mini projects on any social issue
    • Get expert’s assistance whenever possible
    • Research about the mini projects done by your seniors
    • Refer the research journals published by scholars
    • Check the feasibility of your mini projects
    • Work with organizations like Kaashiv InfoTech

WHY, EEE STUDENTS MINI PROJECTS SHOULD BE A REAL TIME MINI PROJECTS ?

    • mini projects for eee students provides a real time exposure for the mini projects for eee students on the latest and trending technologies. Below are some of the Top jobs in the IT Industry Job Openings ,
    • Software Developers – Good in Python, Machine Learning, Data Science and AI programming
    • BlockChain Administrators
    • IOT Specialists
    • Cyber Security
    • Web Application Developer – Web Designers
    • Information Security Analyst – Security Specialist
    • Network Engineers / Analyst
KaaShiv Infotech, eee Student mini projects - programme hornes you in the above said skills / job roles from basics to Advanced.

MINI PROJECTS FOR EEE- PROGRAMME HIGHLIGHTS :

    • mini projects for eee program duration: 5days/ 10days / Or Any number of days
    • Training hours: 3hrs per day
    • Software & others tools installation Guidance
    • Hardware support
    • mini projects for eee Report creation / Project Report creation
    • mini projects for eee students based 2 projects ( real time)
    • Mini project Certificate & Inplant Training Certificate & Industrial exposure certificate + (Achievement certificate for best performers)

ADVANTAGES OF OUR- MINI PROJECTS FOR EEE :

    • Get Real Work Experience
    • Get a Taste of Your Chosen Field
    • Start Networking
    • Helps You Choose a Speciality
    • Helps You Become More Self-Confident
    • Boosts Your CV
    • Increases Your Market Value

MINI PROJECTS FOR EEE - MATERIALS :

    • mini project for eee student , includes Materials after the internship programme
    • Technological guidance and materials will be shared in entire year for the students to mold technically.
    • Our be student involves Free Projects at the end of the programme.

QUERIES OR CONTACT DETAILS :

Venkat (7667662428) and Asha (7667668009)
Email ID: kaashiv.info@gmail.com , priyanka.kaashiv@gmail.com

MINI PROJECTS FOR EEE- PROGRAMME DURATION :

1 months / 2 months / 3 months to 6 Months ( Any Number of Days - Based on student preferences)

WHO CAN ATTEND THIS MINI PROJECTS FOR EEE PROGRAMME :

Mini projects for eee - Programme can be attended by the students who are looking for mini projects for eee/ mini projects for eee 2nd year/mini projects for eee 3rd year/mini projects for eee 4th year.

MINI PROJECTS FOR EEE- PROGRAMME OUTCOME :

1. Student will be specialized in Block Chain, Artificial Intelligence, Machine Learning, Python and R programming, Application Development , Web designing and Networking concepts (Basics to Advanced)
2. Covering 45 concepts
3. Students will be getting trained in / writing 45 Programs – Will change based on the durations of the program.
4. 2 Projects and project documents will be given at the end of the program

REFERENCE YOUTUBE URL FOR MINI PROJECTS FOR EEE :

Check our Internship Training sample videos at this URL –
www.youtube.com/channel

REGISTRATION LINK FOR – MINI PROJECTS EEE :

mini projects for eee - Offline - Office training
Fill our online Internship form

MINI PROJECTS FOR EEE – DEMO LINK :

Check out our Sample mini project for eee Content for the training
kaashivinfotech.com/inplant-training-in-chennai-for-cse-demo

CHECK OUR PREVIOUS TESTIMONIALS FROM STUDENTS FROM DIFFERENT COUNTRIES AND DIFFERENT STATES :

www.kaashivinfotech.com/testimonials/

CHECK OUR STUDENTS FEEDBACK ON OUR - MINI PROJECTS FOR EEE:

mini projects for eee- Feedback - inplant-training-feedback /
mini projects for eee - Feedback - internship-feedback

CHECK OUT THE COLLEGES ATTENDED OUR FINAL YEAR PROJECT FOR EEE:

internship-and-inplant-training-attendees/

CHECK OUR SOCIAL SERVICE YOUTUBE CHANNELS :

www.youtube.com/channel
Check our Social Service youtube channels

REAL TIME PROJECT :

We ranked Top 200 technological companies in Tamil Nadu, Click here to view

MORE ON OUR, MINI PROJECTS FOR EEE:

In our, internship on mini projects for eee- programme below are following different kind of programmes focused such as,
1. Mini projects for eee (or) paid Mini projects for eee,
- Kaashiv Provides an in-depth knowledge of software Platform and other relevant software technologies.
2. Mini projects for eee work from home – Our company provides facility for the students to learn from home as an Final year project for mba based on latest technological trends.
3. Mini projects for eee report – Reports are also provided for the Mini projects for eee students in our company related
4. Mini projects for eee jobs – 100% Job assistance will be provided for the students to gain practical knowledge during the Mini projects for eee period in our company.
5. Mini projects for eee summer / Winter internship 2019/2020 – Summer / Winter holiday internship in mini projects will be given to the student based on the developer knowledge base.
6. Mini projects for eee interview questions – We provide top trending and frequently asked question for the intern students during the internship period based on software development and trending technologies.
7. Mini projects for eee test – Based on the students request, if you are looking for any test to validate your knowledge. we are ready to provide the same.
8. Mini projects for eee certificate – Industry recognized certificates will be provided for the students who perform internship in our company based .
9. Mini projects for eee online– Learn Mini projects for eee from home, our company perform internship through online too.
10. Mini projects for eee ppt / projects report – We provide Mini projects for eee based ppts. projects and project reports as materials after the internship in our company.
11. Free Mini projects for eee- Our company will provide Mini projects for eee the best students of kaashiv infotech.
12. Project For Diploma mini projects for eee – We offer project for the diploma mini project for eee students in our company.
13. Mini project for eee 2nd Year – Our company offers you mini projects for be the above students.


MORE PROJECTS