I have a table(in the dataset) where there is always a field in just a specific cell (Column[0],Row[0]), that I want to place in a textbox, apart from the table. Can I do that?
I know that a field in a table is loaded with this:
Code: Select all
public void Table1_Cell4__GetValue(object sender, Stimulsoft.Report.Events.StiGetValueEventArgs e)
{
e.Value = ToString(sender, DataTable.Column4, true);
}
Any Idea?