在 Excel 2003 中的函数向导的单独窗口中显示 UDF 的 chm 帮助
我为它们创建了 UDF 函数和 chm 帮助,通过 VBA 将 chm 帮助与函数连接起来,如下所示:
Application.MacroOptions macro:="MyMacroName", _
Description:="Description", _
Category:="Company", HelpContextID:=100, _
HelpFile:=ThisWorkbook.Path & "\MyUDFs.chm"
当我在函数向导中查看 UDF 时,单击“有关此函数的帮助”,我的 chm 会在 Excel 2007 中弹出
。 Excel 2003,chm 帮助显示在 Excel 帮助内。看起来它已自动集成到 Excel 2003 帮助中。我仍然希望我的 chm 文件像在 Excel 2007 中一样显示在单独的窗口中。
I created UDF functions and chm help for them, hooked up chm help with functions through VBA like this:
Application.MacroOptions macro:="MyMacroName", _
Description:="Description", _
Category:="Company", HelpContextID:=100, _
HelpFile:=ThisWorkbook.Path & "\MyUDFs.chm"
When I look through my UDF in function wizard, click "Help on this function", my chm pops up in Excel 2007.
However, in Excel 2003, chm help is displayed inside Excel Help. Looks like it is automatically integrated into Excel 2003 help. I still want my chm file display in a separate window like it does in Excel 2007.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
找到了答案,不幸的是,答案是否定的。
请参阅 http://social .msdn.microsoft.com/Forums/en-US/exceldev/thread/bda100fb-070b-42ed-b846-90e5488ab2dd/
Found out the answer, unfortunately it's NO.
See http://social.msdn.microsoft.com/Forums/en-US/exceldev/thread/bda100fb-070b-42ed-b846-90e5488ab2dd/