Excel COM 互操作 - HRESULT 中的 get_Range 异常:0x800A03EC
我收到这个异常:
System.Runtime.InteropServices.COMException:来自 HRESULT 的异常: 0x800A03EC。
关于这段代码:
foreach(Excel.Range rng in xlWorkSheet1.UsedRange.Cells)
{
if (rng.Value2 != xlWorkSheet2.get_Range(rng,Type.Missing).Value2) //here
{
...........
我基本上是在尝试逐个单元格地比较两个 Excel 文件,但是 get_range
似乎给了我这个错误。为什么?
I am recieving this exception:
System.Runtime.InteropServices.COMException: Exception from HRESULT:
0x800A03EC.
on this bit of code:
foreach(Excel.Range rng in xlWorkSheet1.UsedRange.Cells)
{
if (rng.Value2 != xlWorkSheet2.get_Range(rng,Type.Missing).Value2) //here
{
...........
I'm basically trying to compare two excel files cell by cell but get_range
seems to be giving me this error. Why?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您应该更具体地使用 rng 的地址属性从 xlWorkSheet2 获取范围。
或者,您可以迭代使用的范围的行和列,并在 xlWorkSheet2.Cells[row, column] 中提供行和列。
I think you should be somewhat more specific in getting the range from xlWorkSheet2 by using the address property of rng.
Alternatively you can iterate through the rows and columns of the usedrange and provide the row and column in xlWorkSheet2.Cells[row, column].