hi
i have a form with First,Next,Prev ,Buttons.
i had populated a datatable with datas .Now i need to navigate through the records , can any body help me how to achieve this.
thanks in adv
sk
i have a form with First,Next,Prev ,Buttons.
i had populated a datatable with datas .Now i need to navigate through the records , can any body help me how to achieve this.
Code:
conn = new SqlConnection(connstr);
conn.Open();
SqlCommand cmd = new SqlCommand(sqlAllCustomers, conn);
SqlDataAdapter adpt = new SqlDataAdapter(cmd);
DataTable dtCust1 = new DataTable("CustomerDatTab");
adpt.Fill(dtCust1);
sk
Comment