1 Nisan 2013 Pazartesi

DataGridView de Seçilen Satırları Textbox da Gösterme


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.OleDb;


namespace DataGridView_e_veritabanı_ekleme
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        OleDbConnection bağlantı;
        OleDbCommand sqlkomutu;
        OleDbDataAdapter da;
        DataSet ds;
   

        private void Form1_Load(object sender, EventArgs e)
        {
            bağlantı = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=liste.mdb");
            güncelle();

            // TODO: This line of code loads data into the 'listeDataSet.tablo' table. You can move, or remove it, as needed.
            this.tabloTableAdapter.Fill(this.listeDataSet.tablo);

        }


        private void güncelle()
        {
            da = new OleDbDataAdapter("Select * from tablo", bağlantı);
            ds = new DataSet();
            bağlantı.Open();
            da.Fill(ds, "tablo");
            bağlantı.Close();
            dataGridView1.DataSource = ds.Tables["tablo"];
        }

        int seçilensatır;

        private void dataGridView1_RowEnter(object sender, DataGridViewCellEventArgs e)
        {
            seçilensatır = Convert.ToInt16(ds.Tables["tablo"].Rows[e.RowIndex]["Kimlik"]);


            textBox1.Text = seçilensatır.ToString();
            textBox2.Text = ds.Tables["tablo"].Rows[e.RowIndex]["numara"].ToString();
            textBox3.Text = ds.Tables["tablo"].Rows[e.RowIndex]["adı"].ToString();
            textBox4.Text = ds.Tables["tablo"].Rows[e.RowIndex]["soyadı"].ToString();
            textBox5.Text = ds.Tables["tablo"].Rows[e.RowIndex]["vize"].ToString();
            textBox6.Text = ds.Tables["tablo"].Rows[e.RowIndex]["final"].ToString();
            textBox7.Text = ds.Tables["tablo"].Rows[e.RowIndex]["gn"].ToString();

         
        }

    }
}
                          Çalıştırılmış Hali


4 yorum:

  1. Bu yorum yazar tarafından silindi.

    YanıtlaSil
  2. Bu yorum yazar tarafından silindi.

    YanıtlaSil
  3. merhaba,

    Datagridview deki gelen evet hayır döngüsünü nasıl kontrol ettirebilirim ?

    YanıtlaSil
  4. Merhaba

    Değişken tanımlarken türkçe karakter kullanmamanız ve camelCase yazım biçimine dikkat etmenizi öneririm . Zira bu sebepten dolayı daha önce iş görüşmesinde olumsuz dönüt almama neden oldu .

    YanıtlaSil