Hello,
I have a tabcontrol with 4 tabpages with some textboxes on each tabpage.These textboxes are binded to a datatable.All the data appears well in each textbox but when i want to access the text property of the textboxes alle the values are empty except the text propertys on tabpage 1?Why is that?
Here is some code:
{
InitializeComponent();
toolStripProgressBar1.Maximum = 10;
toolStripProgressBar1.Minimum = 0;
toolStripProgressBar1.Value = 0;
toolStripProgressBar1.Step = 1;
connection.Open();
dataAdapter1.Fill(ds,
dt = ds.Tables[
binding1.DataSource = dt;
connection.Close();
}
public
bindingNavigator2.BindingSource = frm1.binding1;
private
this
so textbox 1 and 2 are on tabpage 1 and have a text property but textbox 38 and 49 are on tabpage 4 and have empty text property.
Hope someone can help
greetings, gerry