FarPoint.Web.Spread.Cell mycell;
FarPoint.Web.Spread.Cells cells;
mycell=FpSpread1.Cells[0,0];
mycell.Value="Who is your parent?";
cells=mycell.Parent;
TextBox1.Text=Convert.ToString(cells);
Dim mycell As FarPoint.Web.Spread.Cell Dim cells As FarPoint.Web.Spread.Cells mycell=FpSpread1.Cells(0,0) mycell.Value="Who is your parent?" cells=mycell.Parent() TextBox1.Text=Convert.ToString(cells)