ABSTRACT:

E-Plastic management system is an website project in the project we are used to recycle the waste plastic. It is very helpful in order to overcome the wastage issues of the plastics. The user can able to view the list of plastic categories based on their shapes they can choose any of it. The admin used to maintain all the records. Admin also can view the users details add details of product and can also able to update the changes in the details.The management and recycling of E plastic waste is rapidly growing as it is a valuable resource of industries and it is very substances and with low recycling rate. The Utilization of e plastic waste materials is a partial solution to environmental and ecological problems. As the use of E plastic waste will reduces the Aggregate cost and provides a good strength for the structures and roads. It will reduces the landfill cost and it is energy saving. The e plastic waste consists of discarded plastic waste; these plastics are non-biodegradable components of E plastic waste as a partial replacement of the coarse or fine aggregates.

EXISTING SYSTEM:

In existing the major problem is collecting the plastic and recycling of mixed plastics waste is major challenge for the plastics recycling sector. The plastic wastes are only collected by using man power. Customer does not get the valid product or money for the replacing product.
So the waste plastic materials thrown in the landfills are composed of non-biodegradable products that take a long time to decompose.

PROPOSED SYSTEM:

In proposed system It will gives the details of date, day and time for plastic collection accurately. Reducing man power. Implementing an electronic-based platform. Recycling the unused plastics in smart way

ARCHITECTURE:




SCREENSHOT:











SAMPLE CODE:

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 MaterialsForms
{
    public partial class PurchasePlastics : Form
    {
        public PurchasePlastics()
        {
            InitializeComponent();
        }
        public string user = "";
        SqlConnection conn = new SqlConnection(@"Data Source = HP\KANI ; Integrated Security=true;Initial Catalog = Eplastics");

        private void button2_Click(object sender, EventArgs e)
        {
            conn.Open();

            SqlCommand cmd = new SqlCommand("AddUserDetails", conn);
            cmd.CommandType = CommandType.StoredProcedure;

            SqlParameter p1 = new SqlParameter("@name", SqlDbType.VarChar);
            p1.Value = textBox1.Text;
            cmd.Parameters.Add(p1);

            SqlParameter p11 = new SqlParameter("@address", SqlDbType.VarChar);
            p11.Value = textBox2.Text;
            cmd.Parameters.Add(p11);

            SqlParameter p2 = new SqlParameter("@PhoneNumber", SqlDbType.VarChar);
            p2.Value = textBox3.Text;
            cmd.Parameters.Add(p2);

            SqlParameter p3 = new SqlParameter("@OldWeight", SqlDbType.VarChar);
            p3.Value = textBox4.Text;
            cmd.Parameters.Add(p3);

            SqlParameter p4 = new SqlParameter("@Worth", SqlDbType.VarChar);
            p4.Value = textBox5.Text;
            cmd.Parameters.Add(p4);

            SqlParameter p5 = new SqlParameter("@NewWeight", SqlDbType.VarChar);
            p5.Value = textBox6.Text;
            cmd.Parameters.Add(p5);

            int i = cmd.ExecuteNonQuery();

            if (i > 0)
            {
                MessageBox.Show("User Data added successfully");
            }
            else
            {
                MessageBox.Show("User Data couldn't be added");
            }

            conn.Close();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Category category = new Category();
            category.Show();
            this.Hide();
        }

        private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            this.Close();
        }
    }
}


Purchase plastics:
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 MaterialsForms
{
    public partial class PurchasePlastics : Form
    {
        public PurchasePlastics()
        {
            InitializeComponent();
        }
        public string user = "";
        SqlConnection conn = new SqlConnection(@"Data Source = HP\KANI ; Integrated Security=true;Initial Catalog = Eplastics");

        private void button2_Click(object sender, EventArgs e)
        {
            conn.Open();

            SqlCommand cmd = new SqlCommand("AddUserDetails", conn);
            cmd.CommandType = CommandType.StoredProcedure;

            SqlParameter p1 = new SqlParameter("@name", SqlDbType.VarChar);
            p1.Value = textBox1.Text;
            cmd.Parameters.Add(p1);

            SqlParameter p11 = new SqlParameter("@address", SqlDbType.VarChar);
            p11.Value = textBox2.Text;
            cmd.Parameters.Add(p11);

            SqlParameter p2 = new SqlParameter("@PhoneNumber", SqlDbType.VarChar);
            p2.Value = textBox3.Text;
            cmd.Parameters.Add(p2);

            SqlParameter p3 = new SqlParameter("@OldWeight", SqlDbType.VarChar);
            p3.Value = textBox4.Text;
            cmd.Parameters.Add(p3);

            SqlParameter p4 = new SqlParameter("@Worth", SqlDbType.VarChar);
            p4.Value = textBox5.Text;
            cmd.Parameters.Add(p4);

            SqlParameter p5 = new SqlParameter("@NewWeight", SqlDbType.VarChar);
            p5.Value = textBox6.Text;
            cmd.Parameters.Add(p5);

            int i = cmd.ExecuteNonQuery();

            if (i > 0)
            {
                MessageBox.Show("User Data added successfully");
            }
            else
            {
                MessageBox.Show("User Data couldn't be added");
            }

            conn.Close();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Category category = new Category();
            category.Show();
            this.Hide();
        }

        private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            this.Close();
        }
    }
}

Byshapes:
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 MaterialsForms
{
    public partial class PurchasePlastics : Form
    {
        public PurchasePlastics()
        {
            InitializeComponent();
        }
        public string user = "";
        SqlConnection conn = new SqlConnection(@"Data Source = HP\KANI ; Integrated Security=true;Initial Catalog = Eplastics");

        private void button2_Click(object sender, EventArgs e)
        {
            conn.Open();

            SqlCommand cmd = new SqlCommand("AddUserDetails", conn);
            cmd.CommandType = CommandType.StoredProcedure;

            SqlParameter p1 = new SqlParameter("@name", SqlDbType.VarChar);
            p1.Value = textBox1.Text;
            cmd.Parameters.Add(p1);

            SqlParameter p11 = new SqlParameter("@address", SqlDbType.VarChar);
            p11.Value = textBox2.Text;
            cmd.Parameters.Add(p11);

            SqlParameter p2 = new SqlParameter("@PhoneNumber", SqlDbType.VarChar);
            p2.Value = textBox3.Text;
            cmd.Parameters.Add(p2);

            SqlParameter p3 = new SqlParameter("@OldWeight", SqlDbType.VarChar);
            p3.Value = textBox4.Text;
            cmd.Parameters.Add(p3);

            SqlParameter p4 = new SqlParameter("@Worth", SqlDbType.VarChar);
            p4.Value = textBox5.Text;
            cmd.Parameters.Add(p4);

            SqlParameter p5 = new SqlParameter("@NewWeight", SqlDbType.VarChar);
            p5.Value = textBox6.Text;
            cmd.Parameters.Add(p5);

            int i = cmd.ExecuteNonQuery();

            if (i > 0)
            {
                MessageBox.Show("User Data added successfully");
            }
            else
            {
                MessageBox.Show("User Data couldn't be added");
            }

            conn.Close();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            Category category = new Category();
            category.Show();
            this.Hide();
        }

        private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            this.Close();
        }
    }
}

Category:
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.Diagnostics;
using System.Data.SqlClient;

namespace MaterialsForms
{
    public partial class ByShapes : Form
    {
      public ByShapes()
        {
            InitializeComponent();
        }

        private void panel9_Paint(object sender, PaintEventArgs e)
        {

        }

        private void radioButton3_CheckedChanged(object sender, EventArgs e)
        {

        }

        private void radioButton2_CheckedChanged(object sender, EventArgs e)
        {

        }

        private void radioButton4_CheckedChanged(object sender, EventArgs e)
        {

        }

        private void panel1_Paint(object sender, PaintEventArgs e)
        {

        }

        private void label1_Click(object sender, EventArgs e)
        {

        }
        SqlConnection conn = new SqlConnection(@"Data Source = HP\KANI ; Integrated Security=true;Initial Catalog = Eplastics");

        private void ByShape_Load(object sender, EventArgs e)
        {
            conn.Open();



            DataSet ds = new DataSet();

            SqlCommand cmd1 = new SqlCommand("select convert(varchar, ID)  as val from User_Details order by ID desc", conn);
            SqlDataAdapter da = new SqlDataAdapter(cmd1);
            da.Fill(ds);
            foreach(DataRow dr in ds.Tables[0].Rows)
            {
                comboBox1.Items.Add(dr[0].ToString());

            }
            conn.Close();
        }

        private void panel12_Paint(object sender, PaintEventArgs e)
        {

        }

        private void label4_Click(object sender, EventArgs e)
        {

        }

        private void panel13_Paint(object sender, PaintEventArgs e)
        {


        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {

        }
        public static string shape { get; set; }

        private void button1_Click(object sender, EventArgs e)
        {
            shape = "Sheet";
            SheetFilm BM = new SheetFilm();
            BM.Show();
            this.Hide();
        }
        private void button2_Click_1(object sender, EventArgs e)
        {

            shape = "rod";
            Rod M = new Rod();
            M.Show();
            this.Hide();
        }

        private void button3_Click_1(object sender, EventArgs e)
        {
            shape = "Tube";
            Tube M = new Tube();
            M.Show();

            this.Hide();
        }

        private void button7_Click(object sender, EventArgs e)
        {
            conn.Close();
            DataSet av_d_con_Virds = new DataSet();
            SqlDataAdapter av_d_con_VirSDA = new SqlDataAdapter();

            SqlCommand av_d_con_Vircmd1 = new SqlCommand("select b.*,a.* from dbo.User_Details  a inner join  dbo.newPlastics_Sheet b on a.id = b.  userid where b.userid = ' " + comboBox1 .SelectedItem.ToString()+ "' order by b.  userid desc", conn);


            av_d_con_Vircmd1.CommandType = CommandType.Text;
            av_d_con_VirSDA.SelectCommand = av_d_con_Vircmd1;

            av_d_con_VirSDA.Fill(av_d_con_Virds);

            av_d_con_Virdg.DataSource = av_d_con_Virds.Tables[0];
            av_d_con_Virdg.BackgroundColor = Color.Crimson;

            conn.Close();
        }

        private void button7_MouseEnter(object sender, EventArgs e)
        {
            conn.Close();
            DataSet av_d_con_Virds = new DataSet();
            SqlDataAdapter av_d_con_VirSDA = new SqlDataAdapter();

            SqlCommand av_d_con_Vircmd1 = new SqlCommand("select b.*,a.* from dbo.User_Details  a inner join  dbo.newPlastics_Sheet b on a.id = b.  userid where b.userid = ' " + comboBox1.SelectedItem.ToString() + "' order by b.  userid desc", conn);


            av_d_con_Vircmd1.CommandType = CommandType.Text;
            av_d_con_VirSDA.SelectCommand = av_d_con_Vircmd1;

            av_d_con_VirSDA.Fill(av_d_con_Virds);

            av_d_con_Virdg.DataSource = av_d_con_Virds.Tables[0];
            av_d_con_Virdg.BackgroundColor = Color.Crimson;

            conn.Close();
        }

        private void button9_Click(object sender, EventArgs e)
        {
            conn.Close();
            DataSet av_d_con_Virds = new DataSet();
            SqlDataAdapter av_d_con_VirSDA = new SqlDataAdapter();

            SqlCommand av_d_con_Vircmd1 = new SqlCommand("select b.*,a.* from dbo.User_Details  a inner join  dbo.newPlastics_Rod b on a.id = b.  userid where b.userid = ' " + comboBox1.SelectedItem.ToString() + "' order by b.  userid desc", conn);


            av_d_con_Vircmd1.CommandType = CommandType.Text;
            av_d_con_VirSDA.SelectCommand = av_d_con_Vircmd1;

            av_d_con_VirSDA.Fill(av_d_con_Virds);

            dataGridView1.DataSource = av_d_con_Virds.Tables[0];
            dataGridView1.BackgroundColor = Color.Crimson;

            conn.Close();
        }

        private void button9_MouseEnter(object sender, EventArgs e)
        {
            conn.Close();
            DataSet av_d_con_Virds = new DataSet();
            SqlDataAdapter av_d_con_VirSDA = new SqlDataAdapter();

            SqlCommand av_d_con_Vircmd1 = new SqlCommand("select b.*,a.* from dbo.User_Details  a inner join  dbo.newPlastics_Rod b on a.id = b.  userid order by b.  userid desc", conn);


            av_d_con_Vircmd1.CommandType = CommandType.Text;
            av_d_con_VirSDA.SelectCommand = av_d_con_Vircmd1;

            av_d_con_VirSDA.Fill(av_d_con_Virds);

            dataGridView1.DataSource = av_d_con_Virds.Tables[0];
            dataGridView1.BackgroundColor = Color.Crimson;

            conn.Close();
        }

        private void button8_Click(object sender, EventArgs e)
        {
            conn.Close();
            DataSet av_d_con_Virds = new DataSet();
            SqlDataAdapter av_d_con_VirSDA = new SqlDataAdapter();

            SqlCommand av_d_con_Vircmd1 = new SqlCommand("select b.*,a.* from dbo.User_Details  a inner join  dbo.newPlastics_tube b on a.id = b.  userid order by b.  userid desc", conn);


            av_d_con_Vircmd1.CommandType = CommandType.Text;
            av_d_con_VirSDA.SelectCommand = av_d_con_Vircmd1;

            av_d_con_VirSDA.Fill(av_d_con_Virds);

            dataGridView2.DataSource = av_d_con_Virds.Tables[0];
            dataGridView2.BackgroundColor = Color.Crimson;

            conn.Close();
        }

        private void button8_MouseEnter(object sender, EventArgs e)
        {
            conn.Close();
            DataSet av_d_con_Virds = new DataSet();
            SqlDataAdapter av_d_con_VirSDA = new SqlDataAdapter();

            SqlCommand av_d_con_Vircmd1 = new SqlCommand("select b.*,a.* from dbo.User_Details  a inner join  dbo.newPlastics_tube b on a.id = b.  userid order by b.  userid desc", conn);


            av_d_con_Vircmd1.CommandType = CommandType.Text;
            av_d_con_VirSDA.SelectCommand = av_d_con_Vircmd1;

            av_d_con_VirSDA.Fill(av_d_con_Virds);

            dataGridView2.DataSource = av_d_con_Virds.Tables[0];
            dataGridView2.BackgroundColor = Color.Crimson;

            conn.Close();
        }

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {

        }

        private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            this.Close();
        }


    }
}

SheetFilm:

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.Diagnostics;
using System.Data.SqlClient;

namespace MaterialsForms
{
    public partial class ByShapes : Form
    {
      public ByShapes()
        {
            InitializeComponent();
        }

        private void panel9_Paint(object sender, PaintEventArgs e)
        {

        }

        private void radioButton3_CheckedChanged(object sender, EventArgs e)
        {

        }

        private void radioButton2_CheckedChanged(object sender, EventArgs e)
        {

        }

        private void radioButton4_CheckedChanged(object sender, EventArgs e)
        {

        }

        private void panel1_Paint(object sender, PaintEventArgs e)
        {

        }

        private void label1_Click(object sender, EventArgs e)
        {

        }
        SqlConnection conn = new SqlConnection(@"Data Source = HP\KANI ; Integrated Security=true;Initial Catalog = Eplastics");

        private void ByShape_Load(object sender, EventArgs e)
        {
            conn.Open();



            DataSet ds = new DataSet();

            SqlCommand cmd1 = new SqlCommand("select convert(varchar, ID)  as val from User_Details order by ID desc", conn);
            SqlDataAdapter da = new SqlDataAdapter(cmd1);
            da.Fill(ds);
            foreach(DataRow dr in ds.Tables[0].Rows)
            {
                comboBox1.Items.Add(dr[0].ToString());

            }
            conn.Close();
        }

        private void panel12_Paint(object sender, PaintEventArgs e)
        {

        }

        private void label4_Click(object sender, EventArgs e)
        {

        }

        private void panel13_Paint(object sender, PaintEventArgs e)
        {


        }

        private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {

        }
        public static string shape { get; set; }

        private void button1_Click(object sender, EventArgs e)
        {
            shape = "Sheet";
            SheetFilm BM = new SheetFilm();
            BM.Show();
            this.Hide();
        }
        private void button2_Click_1(object sender, EventArgs e)
        {

            shape = "rod";
            Rod M = new Rod();
            M.Show();
            this.Hide();
        }

        private void button3_Click_1(object sender, EventArgs e)
        {
            shape = "Tube";
            Tube M = new Tube();
            M.Show();

            this.Hide();
        }

        private void button7_Click(object sender, EventArgs e)
        {
            conn.Close();
            DataSet av_d_con_Virds = new DataSet();
            SqlDataAdapter av_d_con_VirSDA = new SqlDataAdapter();

            SqlCommand av_d_con_Vircmd1 = new SqlCommand("select b.*,a.* from dbo.User_Details  a inner join  dbo.newPlastics_Sheet b on a.id = b.  userid where b.userid = ' " + comboBox1 .SelectedItem.ToString()+ "' order by b.  userid desc", conn);


            av_d_con_Vircmd1.CommandType = CommandType.Text;
            av_d_con_VirSDA.SelectCommand = av_d_con_Vircmd1;

            av_d_con_VirSDA.Fill(av_d_con_Virds);

            av_d_con_Virdg.DataSource = av_d_con_Virds.Tables[0];
            av_d_con_Virdg.BackgroundColor = Color.Crimson;

            conn.Close();
        }

        private void button7_MouseEnter(object sender, EventArgs e)
        {
            conn.Close();
            DataSet av_d_con_Virds = new DataSet();
            SqlDataAdapter av_d_con_VirSDA = new SqlDataAdapter();

            SqlCommand av_d_con_Vircmd1 = new SqlCommand("select b.*,a.* from dbo.User_Details  a inner join  dbo.newPlastics_Sheet b on a.id = b.  userid where b.userid = ' " + comboBox1.SelectedItem.ToString() + "' order by b.  userid desc", conn);


            av_d_con_Vircmd1.CommandType = CommandType.Text;
            av_d_con_VirSDA.SelectCommand = av_d_con_Vircmd1;

            av_d_con_VirSDA.Fill(av_d_con_Virds);

            av_d_con_Virdg.DataSource = av_d_con_Virds.Tables[0];
            av_d_con_Virdg.BackgroundColor = Color.Crimson;

            conn.Close();
        }

        private void button9_Click(object sender, EventArgs e)
        {
            conn.Close();
            DataSet av_d_con_Virds = new DataSet();
            SqlDataAdapter av_d_con_VirSDA = new SqlDataAdapter();

            SqlCommand av_d_con_Vircmd1 = new SqlCommand("select b.*,a.* from dbo.User_Details  a inner join  dbo.newPlastics_Rod b on a.id = b.  userid where b.userid = ' " + comboBox1.SelectedItem.ToString() + "' order by b.  userid desc", conn);


            av_d_con_Vircmd1.CommandType = CommandType.Text;
            av_d_con_VirSDA.SelectCommand = av_d_con_Vircmd1;

            av_d_con_VirSDA.Fill(av_d_con_Virds);

            dataGridView1.DataSource = av_d_con_Virds.Tables[0];
            dataGridView1.BackgroundColor = Color.Crimson;

            conn.Close();
        }

        private void button9_MouseEnter(object sender, EventArgs e)
        {
            conn.Close();
            DataSet av_d_con_Virds = new DataSet();
            SqlDataAdapter av_d_con_VirSDA = new SqlDataAdapter();

            SqlCommand av_d_con_Vircmd1 = new SqlCommand("select b.*,a.* from dbo.User_Details  a inner join  dbo.newPlastics_Rod b on a.id = b.  userid order by b.  userid desc", conn);


            av_d_con_Vircmd1.CommandType = CommandType.Text;
            av_d_con_VirSDA.SelectCommand = av_d_con_Vircmd1;

            av_d_con_VirSDA.Fill(av_d_con_Virds);

            dataGridView1.DataSource = av_d_con_Virds.Tables[0];
            dataGridView1.BackgroundColor = Color.Crimson;

            conn.Close();
        }

        private void button8_Click(object sender, EventArgs e)
        {
            conn.Close();
            DataSet av_d_con_Virds = new DataSet();
            SqlDataAdapter av_d_con_VirSDA = new SqlDataAdapter();

            SqlCommand av_d_con_Vircmd1 = new SqlCommand("select b.*,a.* from dbo.User_Details  a inner join  dbo.newPlastics_tube b on a.id = b.  userid order by b.  userid desc", conn);


            av_d_con_Vircmd1.CommandType = CommandType.Text;
            av_d_con_VirSDA.SelectCommand = av_d_con_Vircmd1;

            av_d_con_VirSDA.Fill(av_d_con_Virds);

            dataGridView2.DataSource = av_d_con_Virds.Tables[0];
            dataGridView2.BackgroundColor = Color.Crimson;

            conn.Close();
        }

        private void button8_MouseEnter(object sender, EventArgs e)
        {
            conn.Close();
            DataSet av_d_con_Virds = new DataSet();
            SqlDataAdapter av_d_con_VirSDA = new SqlDataAdapter();

            SqlCommand av_d_con_Vircmd1 = new SqlCommand("select b.*,a.* from dbo.User_Details  a inner join  dbo.newPlastics_tube b on a.id = b.  userid order by b.  userid desc", conn);


            av_d_con_Vircmd1.CommandType = CommandType.Text;
            av_d_con_VirSDA.SelectCommand = av_d_con_Vircmd1;

            av_d_con_VirSDA.Fill(av_d_con_Virds);

            dataGridView2.DataSource = av_d_con_Virds.Tables[0];
            dataGridView2.BackgroundColor = Color.Crimson;

            conn.Close();
        }

        private void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {

        }

        private void linkLabel3_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            this.Close();
        }


    }
}







Rod.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 MaterialsForms
{
    public partial class Rod : Form
    {
        public Rod()
        {
            InitializeComponent();
        }

        private void comboBox6_SelectedIndexChanged(object sender, EventArgs e)
        {

        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void button2_Click(object sender, EventArgs e)
        {
            this.Close();
        }
        SqlConnection conn = new SqlConnection(@"Data Source = HP\KANI ; Integrated Security=true;Initial Catalog = Eplastics");

        private void button1_Click(object sender, EventArgs e)
        {
            conn.Open();
            string shape = ByShapes.shape;

            string shapetype = "";
            if (radioButton1.Checked)
            {
                shapetype = "Acrylic";
            }
            else if (radioButton8.Checked)
            {
                shapetype = "ABS";
            }
            else if (radioButton3.Checked)
            {
                shapetype = "Acetal";
            }
            else if (radioButton7.Checked)
            {
                shapetype = "CE Canvas Phenolic";
            }
            else if (radioButton4.Checked)
            {
                shapetype = "Polyimide";
            }
            else if (radioButton6.Checked)
            {
                shapetype = "CAB";
            }


            DataSet ds = new DataSet();

            SqlCommand cmd1 = new SqlCommand("select Top 1 ID from User_Details order by ID desc", conn);
            SqlDataAdapter da = new SqlDataAdapter(cmd1);
            da.Fill(ds);
            string id = ds.Tables[0].Rows[0][0].ToString();



            SqlCommand cmd = new SqlCommand("AddnewPlastics_Rod", conn);
            cmd.CommandType = CommandType.StoredProcedure;


            SqlParameter p0 = new SqlParameter("@id", SqlDbType.VarChar);
            p0.Value = id;
            cmd.Parameters.Add(p0);


            SqlParameter p1 = new SqlParameter("@shape", SqlDbType.VarChar);
            p1.Value = shape;
            cmd.Parameters.Add(p1);

            SqlParameter p11 = new SqlParameter("@category", SqlDbType.VarChar);
            p11.Value = Category.category;
            cmd.Parameters.Add(p11);

            SqlParameter p2 = new SqlParameter("@shapetype", SqlDbType.VarChar);
            p2.Value = shapetype;
            cmd.Parameters.Add(p2);

          

            SqlParameter p3 = new SqlParameter("@diameter", SqlDbType.VarChar);
            p3.Value = textBox1.Text;
            cmd.Parameters.Add(p3);
 

            SqlParameter p5 = new SqlParameter("@lengt", SqlDbType.VarChar);
            p5.Value = textBox2.Text;
            cmd.Parameters.Add(p5);

            SqlParameter p6 = new SqlParameter("@color", SqlDbType.VarChar);
            p6.Value = comboBox4.SelectedItem.ToString();
            cmd.Parameters.Add(p6);

            SqlParameter p7 = new SqlParameter("@texture", SqlDbType.VarChar);
            p7.Value = comboBox5.SelectedItem.ToString();
            cmd.Parameters.Add(p7);

            SqlParameter p8 = new SqlParameter("@grade", SqlDbType.VarChar);
            p8.Value = comboBox6.SelectedItem.ToString();
            cmd.Parameters.Add(p8);

            SqlParameter p9 = new SqlParameter("@property", SqlDbType.VarChar);
            p9.Value = comboBox7.SelectedItem.ToString();
            cmd.Parameters.Add(p9);

            int i = cmd.ExecuteNonQuery();

            if (i > 0)
            {
                MessageBox.Show("Rod Data added successfully");
            }
            else
            {
                MessageBox.Show("Rod Data couldn't be added");
            }

            conn.Close();
        }

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

        private void button3_Click(object sender, EventArgs e)
        {
            RodShape rod = new RodShape();
            rod.Show();
        }
    }
}




Tube.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 MaterialsForms
{
    public partial class Tube : Form
    {
        public Tube()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            
        }
        SqlConnection conn = new SqlConnection(@"Data Source = HP\KANI ; Integrated Security=true;Initial Catalog = Eplastics");

        private void button1_Click_1(object sender, EventArgs e)
        {
            conn.Open();
            string shape = ByShapes.shape;

            string shapetype = "";
            if (radioButton1.Checked)
            {
                shapetype = "Acrylic";
            }
            else if (radioButton8.Checked)
            {
                shapetype = "ABS";
            }
            else if (radioButton3.Checked)
            {
                shapetype = "Acetal";
            }
            else if (radioButton7.Checked)
            {
                shapetype = "CE Canvas Phenolic";
            }
            else if (radioButton4.Checked)
            {
                shapetype = "Polyimide";
            }
            else if (radioButton6.Checked)
            {
                shapetype = "CAB";
            }


            DataSet ds = new DataSet();

            SqlCommand cmd1 = new SqlCommand("select Top 1 ID from User_Details order by ID desc", conn);
            SqlDataAdapter da = new SqlDataAdapter(cmd1);
            da.Fill(ds);
            string id = ds.Tables[0].Rows[0][0].ToString();



            SqlCommand cmd = new SqlCommand("AddnewPlastics_tube", conn);
            cmd.CommandType = CommandType.StoredProcedure;


            SqlParameter p0 = new SqlParameter("@id", SqlDbType.VarChar);
            p0.Value = id;
            cmd.Parameters.Add(p0);


            SqlParameter p1 = new SqlParameter("@shape", SqlDbType.VarChar);
            p1.Value = shape;
            cmd.Parameters.Add(p1);

            SqlParameter p11 = new SqlParameter("@category", SqlDbType.VarChar);
            p11.Value = Category.category;
            cmd.Parameters.Add(p11);

            SqlParameter p2 = new SqlParameter("@shapetype", SqlDbType.VarChar);
            p2.Value = shapetype;
            cmd.Parameters.Add(p2);



            SqlParameter p3 = new SqlParameter("@innerdiameter", SqlDbType.VarChar);
            p3.Value = textBox1.Text;
            cmd.Parameters.Add(p3);

            SqlParameter p4 = new SqlParameter("@outerdiameter", SqlDbType.VarChar);
            p4.Value = textBox2.Text;
            cmd.Parameters.Add(p4);

            SqlParameter p41 = new SqlParameter("@width", SqlDbType.VarChar);
            p41.Value = textBox3.Text;
            cmd.Parameters.Add(p41);


            SqlParameter p5 = new SqlParameter("@lengt", SqlDbType.VarChar);
            p5.Value = textBox4.Text;
            cmd.Parameters.Add(p5);

            SqlParameter p6 = new SqlParameter("@color", SqlDbType.VarChar);
            p6.Value = comboBox4.SelectedItem.ToString();
            cmd.Parameters.Add(p6);

            SqlParameter p7 = new SqlParameter("@texture", SqlDbType.VarChar);
            p7.Value = comboBox5.SelectedItem.ToString();
            cmd.Parameters.Add(p7);

            SqlParameter p8 = new SqlParameter("@grade", SqlDbType.VarChar);
            p8.Value = comboBox6.SelectedItem.ToString();
            cmd.Parameters.Add(p8);

            SqlParameter p9 = new SqlParameter("@property", SqlDbType.VarChar);
            p9.Value = comboBox7.SelectedItem.ToString();
            cmd.Parameters.Add(p9);
            int i = cmd.ExecuteNonQuery();

            if (i > 0)
            {
                MessageBox.Show("Tube Data added successfully");
            }
            else
            {
                MessageBox.Show("Tube Data couldn't be added");
            }

            conn.Close();
        }

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

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

        private void button3_Click(object sender, EventArgs e)
        {
            TubeShape rube = new TubeShape();
            rube.Show();
        }
    }
}


MODULES DESCRIPITION:

MODULE 1:

• Admin has the supreme power of the application
• Admin must login into the application.
• Admin only can able to give the estimated value for the users waste
• Admin is responsible for maintaining the whole system.
• Admin can can able to customize the shape of plastic based on the users requirements

MODULE 2:

    • Buyer is the user of this application.
    • New user needs to sign up with basic details.
    • Registered user can login using unique username and password
    • User can modify the shape of ordered plastic.

    MODULE 3:

      • In waste plastic module the user must give the detail of old plastics
      • After the details are confirmed the admin will give the estimated value for the plastic.
      • After the estimated value is displayed the user can order any type of plastic.
      • User can able to view the reshape plastic in the screen.

      ISO certified - Mini projects for computer science:

      KaaShiv Offers, Mini projects for computer science. Mini project for computer science 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 computer science 2nd year, mini projects for computer science 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 computer science 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 computer science.

          • Real-time project development and Technology Training by Microsoft Awarded Most Valuable Professiona
          • mini projects for computer science 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, COMPUTER SCIENCE STUDENTS MINI PROJECTS SHOULD BE A REAL TIME MINI PROJECTS ?

      mini projects for computer science students provides a real time exposure for the mini projects for computer science 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 / Analys
      KaaShiv Infotech, computer science Student mini projects - programme hornes you in the above said skills / job roles from basics to Advanced.

      MINI PROJECTS FOR COMPUTER SCIENCE - PROGRAMME HIGHLIGHTS

          • mini projects for computer science program duration: 5days/ 10days / Or Any number of days
          • Training hours: 3hrs per day
          • Software & others tools installation Guidance
          • Hardware support
          • mini projects for computer science Report creation / Project Report creation
          • mini projects for computer science 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 COMPUTER SCIENCE

          • 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 COMPUTER SCIENCE - MATERIALS

          • mini project for computer science 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 COMPUTER SCIENCE- 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 COMPUTER SCIENCE PROGRAMME :

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

      MINI PROJECTS FOR COMPUTER SCIENCE- 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 COMPUTER SCIENCE :

      Check our Internship Training sample videos at this URL –
      Check our Internship Training sample videos


      REGISTRATION LINK FOR – MINI PROJECTS COMPUTER SCIENCE :

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

      MINI PROJECTS FOR COMPUTER SCIENCE – DEMO LINK :

      Check out our Sample mini project for computer science Content for the training
      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 COMPUTER SCIENCE :

      Mini projects for computer science - Feedback - inplant-training-feedback /
      mini projects for computer science - Feedback - internship-feedback

      CHECK OUT THE COLLEGES ATTENDED OUR MINI PROJECT FOR COMPUTER SCIENCE :

      internship-and-inplant-training-attendees/

      CHECK OUR SOCIAL SERVICE YOUTUBE CHANNELS :

      Check our Social Service youtube channels
      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 COMPUTER SCIENCE:

      In our, internship on mini projects for computer science- programme below are following different kind of programmes focused such as,
      1. Mini projects for computer science (or) paid Mini projects for computer science,
      - Kaashiv Provides an in-depth knowledge of software Platform and other relevant software technologies.
      2. Mini projects for computer science students work from home – Our company provides facility for the students to learn from home as an mini projets for computer science based on latest technological trends.
      3. Mini projects for computer science report – Reports are also provided for the Mini projects for computer science students in our company related
      4. Mini projects for computer science jobs – 100% Job assistance will be provided for the students to gain practical knowledge during the Mini projects for computer science period in our company.
      5. Mini projects for computer science students provide 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 computer science 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 computer science students 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 computer science certificate – Industry recognized certificates will be provided for the students who perform internship in our company based .
      9. Mini projects for computer science online– Learn Mini projects for computer science from home, our company perform internship through online too.
      10. Mini projects for computer science ppt / projects report – We provide Mini projects for computer science based ppts. projects and project reports as materials after the internship in our company.
      11. Free Mini project for computer science- Our company will provide Mini projects for computer science the best students of kaashiv infotech.
      12. Project For Diploma mini projects for computer science – We offer project for the diploma mini project for computer science students in our company.
      13. Mini project for computer science 2nd Year – Our company offers you mini projects for computer science the above students.

      MORE PROJECTS