将字符串从 C# 应用程序传输到 OPEN Excel 2003 工作表单元格

发布于 2024-11-27 06:07:27 字数 245 浏览 1 评论 0原文

我需要将字符串从 C# 应用程序传输到已打开 Excel 工作表中。我认为自动化或 RDI 应该能够做到这一点,但不知道如何做。

作为一种变体,不是将其复制到单元格中 - 启动一个 VBA 宏/子,并将字符串作为参数(如果更容易的话)...

请帮忙。

.NET 3.5 / Excel 2003

PS 不通过剪贴板 - 传输必须在没有用户干预的情况下进行。

I need to transfer a string from C# app into already opened Excel worksheet. I think automation or RDI should be able to do so but dont know how..

As a variation, instead of copying it into a cell - launch a VBA macro / sub with the string as a parameter (if it is easier)...

Please help.

.NET 3.5 / Excel 2003

P.S. Not through clipboard - the transfer must be without user intervention.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

青巷忧颜 2024-12-04 06:07:27

对于Excel._Workbook oWS,你可以这样写:

            // Row 1
            int nR = 1;
            int nC = 1 ;
            oWS.Cells[nR,nC] = "DIVISION" ;

For an Excel._Workbook oWS, you can write it like this:

            // Row 1
            int nR = 1;
            int nC = 1 ;
            oWS.Cells[nR,nC] = "DIVISION" ;
回眸一笑 2024-12-04 06:07:27

我是如何解决这个问题的:

Workbook = (Excel.Workbook)System.Runtime.InteropServices.Marshal.BindToMoniker(FileName);

上面的代码有助于在多个 Excel 实例以及每个实例打开的文件中查找打开的文件。

写入单元格是微不足道的。

How I have resolved this:

Workbook = (Excel.Workbook)System.Runtime.InteropServices.Marshal.BindToMoniker(FileName);

the above code helps to find opened file amongst several instances of Excel and amongst opened files with each instance.

The writing to the cell is trivial.

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