C# Excel 页脚问题
我正在创建一个 C# Windows 应用程序来创建 Excel 2003 工作表。 需要添加到页脚:第 1 页(共 4 页)。
我目前拥有它,因此它将“页:&[Page] of &[Pages]”放入 Excel 工作表的页脚中。
当我打开创建的文档并查看页脚时,我会看到“页:页]页]”
我可以单击文本,它会突出显示它并显示它应该显示的内容,并且之后可以正常工作。
有什么方法可以让它从一开始就正常工作吗?
I am creating a C# windows application to create an Excel 2003 sheet. There is a requirement to add to the footer: Page 1 of 4.
I currently have it so it puts "Page: &[Page] of &[Pages]" into the footer of the excel sheet.
When I open up the created document and look at the footer I see "Page: Page] of Pages]"
I can click on the text, it highlights it and shows what it should, and works correctly after that.
Is there any way to get it to work correctly from the start?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Excel 2007 中,如果您键入以下内容作为页脚:
然后进入 VBA 编辑器立即窗口并输入以下内容:
结果是:
换句话说,代码中设置的值与用户界面中键入的值不同。
鉴于 Microsoft 将向后兼容性视为某种圣旨,我强烈怀疑您在 Excel 2003 中看到了同样的情况 - 尝试修改代码以设置“Page &P of &N”。
In Excel 2007 if you type this as your footer:
Then go into the VBA editor Immediate window and enter this:
the result is:
In other words, the value set in the code is different from the one typed in the user interface.
Given that Microsoft treats backward compatibility like some kind of holy writ, I strongly suspect you're seeing the same thing in Excel 2003 - try modifying your code to set "Page &P of &N" instead.