C# Code For Beginners (Part 3)

1.  Add Items to Listbox from Textbox

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

        private void button1_Click(object sender, EventArgs e)
        {
           
           
            listBox1.Items.Add(textBox1.Text +"                          "+textBox2.Text +"                          "+textBox3.Text);
     
        }
    }
}

output 




ii.

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 Blog3
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
           
            listBox1.Items.Add(textBox1.Text);
            listBox1.Items.Add(textBox2.Text +"                          "+textBox3.Text);
     
        }
    }
}

output




2. Add Item to Listbox from Datagridview

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

        private void button1_Click(object sender, EventArgs e)
        {
            foreach (DataGridViewRow row in dataGridView1.Rows)
            {
               
                if (!row.IsNewRow)
                    listBox1.Items.Add(row.Cells[0].Value.ToString() + "    " + row.Cells[1].Value.ToString() + "      " + row.Cells[2].Value.ToString());
             
            }

        }
    }
}

output



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

        private void button1_Click(object sender, EventArgs e)
        {
            foreach (DataGridViewRow row in dataGridView1.Rows)
            {
                 if (!row.IsNewRow)
                   listBox1.Items.Add(row.Cells[0].Value.ToString());

                if (!row.IsNewRow)
                    listBox1.Items.Add(row.Cells[0].Value.ToString() + "    " + row.Cells[1].Value.ToString() + "      " + row.Cells[2].Value.ToString());
         
            }
       
        }
    }
}

output




Comments

Popular posts from this blog

C# Analog Clock

Basic Prolog (List)

SOLID Principles