바인딩 네비게이터
바인딩 거는 소스 처리부..
SqlConnection sql = new SqlConnection(" ... ");
SqlCommand scmd = sql.CreateCommand();
scmd.CommandText = "select * from Item(Nolock)";
sql.Open();
DataTable dt = new DataTable();
dt.Load(scmd.ExecuteReader( CommandBehavior.SequentialAccess ));
sql.Close();
this.bindingSource1.DataSource = dt;
this.bindingNavigator1.BindingSource = this.bindingSource1;
this.textBox1.DataBindings.Add("Text", this.bindingSource1, "ICODE", true);
this.textBox2.DataBindings.Add("Text", this.bindingSource1, "KNAME", true);
음 이걸 어떻게 응용할수 있을까???
'# 2) .Net ( Vs 2005 ) > WinForm' 카테고리의 다른 글
ErrorProvider 라는게 있음. (0) | 2009.08.18 |
---|---|
바인딩네비게이터와 프로퍼티그리드 연결 (0) | 2009.08.18 |
WaitCursor ... (0) | 2009.08.14 |
데이타 그리드 뷰 헤더 이용하기. (2) | 2009.08.06 |
드디어 챠트를 만들다!!! (0) | 2009.06.19 |