How to do - MS SQL C# Excel Access
Monday, 26 May 2014
How to fix error - Cannot convert type int to DocumentFormat.OpenXml.UInt32Value
Cannot convert type int to DocumentFormat.OpenXml.UInt32Value
Replace
row1.RowIndex = (
UInt32Value
)i
with
row1.RowIndex =(
UInt32
)i;
1 comment:
Unknown
9 November 2017 at 00:27
row1.RowIndex = Convert.ToUInt32(i)
Reply
Delete
Replies
Reply
Add comment
Load more...
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
row1.RowIndex = Convert.ToUInt32(i)
ReplyDelete