Get the value from a specific Cell
Posted: Fri Nov 19, 2010 7:30 am
Hi everyone:
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:
but this for a text box always return the last item of the DataTable.
Any Idea?
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?