A
Aaron
Hello,
I have six textboxes that there text needs to be transferred to be datatable
column names.
I have tried 2 ways
1st way
private void txtFine1_TextChanged(object sender, System.EventArgs e)
{
dcFine1.ColumnName = txtFine1.Text;
as well this variation dtVolID.dcFine1.ColumnName = txtFine1.text;
}
2nd way
dcFine1.ColumnName = txtFine1.text; and txtFine1.text.tostring();
during the creation of the datatable--I knew it was a total long shot
approach.
TIA
Aaron
I have six textboxes that there text needs to be transferred to be datatable
column names.
I have tried 2 ways
1st way
private void txtFine1_TextChanged(object sender, System.EventArgs e)
{
dcFine1.ColumnName = txtFine1.Text;
as well this variation dtVolID.dcFine1.ColumnName = txtFine1.text;
}
2nd way
dcFine1.ColumnName = txtFine1.text; and txtFine1.text.tostring();
during the creation of the datatable--I knew it was a total long shot
approach.
TIA
Aaron