Thursday 26 June 2014

How to fix error Cannot convert type 'DocumentFormat.OpenXml.UInt32Value' to 'int'


Watch this example on YouTube


Replace
 int t = (int)(r.RowIndex);
With
UInt32 t = (UInt32)(r.RowIndex);

No comments:

Post a Comment