Dear Experts
I use following codes to display data.
Next & Back buttons work fine, but when I enter some sno into textbox1 then it displays nothing
Codes on textbox1 lostfocus
Codes in Form LoadCode:Me.ds.Tables("employees").Rows.Find(Me.TextBox1.Text)
Codes on Next ButtonCode:Dim sql = "select * from employees" Dim da As New SqlClient.SqlDataAdapter(sql, con) ds.Clear() da.Fill(ds, "employees") TextBox1.DataBindings.Add("text", ds.Tables("employees"), "sno") TextBox2.DataBindings.Add("text", ds.Tables("employees"), "Name") TextBox3.DataBindings.Add("text", ds.Tables("employees"), "City") TextBox4.DataBindings.Add("text", ds.Tables("employees"), "Phone") Dim colpk(0) As DataColumn colpk(0) = ds.Tables(0).Columns("sno") ds.Tables(0).PrimaryKey = colpk
Codes on Back ButtonCode:Me.BindingContext(ds.Tables("employees")).Position += 1
How to display relevant data against column sno given in textbox1Code:Me.BindingContext(ds.Tables("employees")).Position -= 1
Please help


Reply With Quote
