FNP: Fixes for page breaks/yoffset for component list sections & overlap bottom message & text

Fix null reference when migrating FNP table
This commit is contained in:
2013-11-20 13:28:46 +00:00
parent 1415128986
commit fd49699ee0
2 changed files with 10 additions and 2 deletions

View File

@@ -4031,7 +4031,7 @@ namespace Volian.Controls.Library
if (rC > c)
{
this.MergedRanges.Add(this.GetCellRange(r, c, r, rC));
string cellstr = this[r, c].ToString();
string cellstr = (this[r,c]==null)? " ": this[r, c].ToString();
for (int x = c + 1; x <= rC; x++)
this[r, x] = cellstr;
c = rC;