Şekil 1
Şekil 2
Şekil 3
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 WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
dataGridView1.CellEndEdit +=new DataGridViewCellEventHandler(dataGridView1_CellEndEdit);
}
private void Form1_Load(object sender, EventArgs e)
{
// TODO: This line of code loads data into the 'northwindDataSet.Customers' table. You can move, or remove it, as needed.
this.customersTableAdapter.Fill(this.northwindDataSet.Customers);
}
private void dataGridView1_CellEndEdit(object sender, DataGridViewCellEventArgs e)
{
//dataGridView da güncelleştirme işlemini gerçekleştiriyoruz.
this.customersTableAdapter.Update(this.northwindDataSet.Customers);
}
}
}
Bir makalenin daha sonuna geldik. Bir sonraki makalede görüşmek dileğiyle. Hoşçakalın. Bahadır ŞAHİN
0 comments:
Yorum Gönder