如何使 SAS 工具栏可用于所有窗口?
我正在使用 SAS 9.1,并且希望无论哪个窗口处于“焦点”状态(例如日志、编辑器、输出),我的工具栏都可用。
我的代码如下所示:
libname temp678 "\\MyDrive\Team Autoexec";
dm "toolload bar temp678.profile.MycustomToolbar";
libname temp678 clear;
但是,当我运行它时,它仅应用于日志窗口! 我在某处读到需要关闭 SWITCHING,但这似乎可能是 V6.1 选项,并且在 Base SAS 窗口环境中找不到它......
I am using SAS 9.1 and wish to make my toolbar available regardless of which window is in 'focus' (eg log, editor, output).
My code looks like this:
libname temp678 "\\MyDrive\Team Autoexec";
dm "toolload bar temp678.profile.MycustomToolbar";
libname temp678 clear;
However when I run it, it only gets applied to the Log window! I've read somewhere that SWITCHING needs to be turned off, but this seems like it may have been a V6.1 option and can't find it in Base SAS windowing environment...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
9.1 中有一个 TOOLSWITCH 命令,但我认为这不能满足您的要求。 除非有人知道执行您想要的操作的特定选项,否则我建议您在日志和编辑器工具栏上复制其他按钮。
There's a TOOLSWITCH command in 9.1 but I don't think that will do what you want here. Unless someone is aware of a specific option to do what you want, I'd suggest just duplicating your additional buttons on both the log and editor toolbars.