Excel COM 互操作 - HRESULT 中的 get_Range 异常:0x800A03EC

发布于 2024-11-03 13:16:36 字数 461 浏览 1 评论 0原文

我收到这个异常:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

浅忆流年 2024-11-10 13:16:36

我认为您应该更具体地使用 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].

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文