I am using SAS 9.1 and wish to make my toolbar available regardless of which window is in 'focus' (eg log, editor, output).
我正在使用SAS 9.1并希望无论哪个窗口处于“焦点”(例如日志,编辑器,输出),我的工具栏都可用。
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...
但是,当我运行它时,它只会应用于日志窗口!我已经读过需要关闭SWITCHING的地方,但这似乎可能是V6.1选项,并且无法在Base SAS窗口环境中找到它...
1 个解决方案
#1
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.
在9.1中有一个TOOLSWITCH命令,但我认为这不会做你想要的。除非有人知道您想要的特定选项,否则我建议您只在日志和编辑器工具栏上复制其他按钮。
#1
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.
在9.1中有一个TOOLSWITCH命令,但我认为这不会做你想要的。除非有人知道您想要的特定选项,否则我建议您只在日志和编辑器工具栏上复制其他按钮。