Monday 20 October 2014

How to fix error - Cannot convert type int to DocumentFormat.OpenXML.UInt32Value

 Cannot convert type int to DocumentFormat.OpenXML.UInt32Value


Watch this example on YouTube

Replace
RowIndex = (UInt32Value)i,
with
RowIndex = (UInt32)i,

No comments:

Post a Comment