I'm trying to copy the data from sql table "checkin " to auto fill in on a form in a textbox .. on a button click
DataSet ds = null;
private void button8_Click(object sender, EventArgs e)
{
tblNamesBS.DataSource = ds.Tables[0];
textBox2.DataBindings.Add(new Binding("Text", tblNamesBS,"GuestName"));
}
ds?