Added Error Handler for corrupted table data.
This commit is contained in:
parent
6098140d26
commit
505bfa467d
@ -760,8 +760,15 @@ namespace Volian.Controls.Library
|
|||||||
MyFlexGrid.Focus();
|
MyFlexGrid.Focus();
|
||||||
if (!MyFlexGrid.IsRoTable) // Table ROs are none editable - don't select a table cell
|
if (!MyFlexGrid.IsRoTable) // Table ROs are none editable - don't select a table cell
|
||||||
{
|
{
|
||||||
MyFlexGrid.Select(0, 0);
|
try
|
||||||
MyFlexGrid.FirstEntry = true; // to fix a problem with initial mouse click into table
|
{
|
||||||
|
MyFlexGrid.Select(0, 0);
|
||||||
|
MyFlexGrid.FirstEntry = true; // to fix a problem with initial mouse click into table
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
MessageBox.Show("The content of this table is corrupted. You will either need to restore a previous version or delete it.", "Table Corrupted", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -58,7 +58,8 @@ namespace Volian.Controls.Library
|
|||||||
|
|
||||||
public partial class VlnFlexGrid : C1.Win.C1FlexGrid.C1FlexGrid
|
public partial class VlnFlexGrid : C1.Win.C1FlexGrid.C1FlexGrid
|
||||||
{
|
{
|
||||||
private bool _Disposed = false;
|
private static readonly log4net.ILog _MyLog = log4net.LogManager.GetLogger(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType);
|
||||||
|
private bool _Disposed = false;
|
||||||
private static int _CountCreated = 0;
|
private static int _CountCreated = 0;
|
||||||
private static int _CountDisposed = 0;
|
private static int _CountDisposed = 0;
|
||||||
private static int _CountFinalized = 0;
|
private static int _CountFinalized = 0;
|
||||||
@ -893,11 +894,18 @@ namespace Volian.Controls.Library
|
|||||||
Visible = false;
|
Visible = false;
|
||||||
if (Parent is GridItem)
|
if (Parent is GridItem)
|
||||||
{
|
{
|
||||||
System.Drawing.Image img = this.CreateImage();
|
try
|
||||||
using (Graphics gr = (Parent as GridItem).CreateGraphics())
|
{
|
||||||
{
|
System.Drawing.Image img = this.CreateImage();
|
||||||
gr.DrawImage(img, Left, Top);
|
using (Graphics gr = (Parent as GridItem).CreateGraphics())
|
||||||
}
|
{
|
||||||
|
gr.DrawImage(img, Left, Top);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_MyLog.WarnFormat("Table Content Corrupted");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Clear();
|
Clear();
|
||||||
MergedRanges.Clear();
|
MergedRanges.Clear();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user