Visual Studio 2015 Sp2
https://www.visualstudio.com/ko-kr/downloads/download-visual-studio-vs.aspx
Visual Studio 2013 Sp5
https://go.microsoft.com/fwlink/?LinkId=519391
Visual Studio 2012 Sp5
https://www.microsoft.com/ko-KR/download/details.aspx?id=48708
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Data.SqlClient;
namespace First_Csharp_app
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
{
SqlConnection con = new SqlConnection("server = MUNESH\\SQL2008R2;Database=data;UID=sa;Password=123;");
if (e.RowIndex >= 0)
{
DataGridViewRow row = this.datagridview1.Rows[e.RowIndex];
if (cell != null)
id_txt.Text = row.Cells["ID"].Value.ToString();
textBox1.Text = row.Cells["FirsName"].Value.ToString();
textBox1.Text = row.Cells["LastName"].Value.ToString();
textBox3.Text = row.Cells["Age"].Value.ToString();
}
}
}
}
'VB 2010' 카테고리의 다른 글
DataGridView 데이터 수정, 삭제 등 (0) | 2016.05.12 |
---|---|
수당 정리 (0) | 2016.05.06 |
CheckBox in Header Cell of DataGridView Control (0) | 2016.04.24 |
20160414_코딩 도움 사이트 (0) | 2016.04.14 |
[VB.NET] DataGridView 팁 정리 (0) | 2016.04.14 |