从工具栏提交 SAS 代码或宏

发布于 2024-07-15 12:30:17 字数 64 浏览 9 评论 0原文

是否可以将 SAS 脚本或宏分配给 Base SAS 中的工具栏按钮? 即,您可以“dm”宏或 sas 脚本吗?

Is it possible to allocate a SAS script or macro to a Toolbar button in Base SAS? ie can you 'dm' a macro or sas script?

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

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

发布评论

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

评论(1

怀念你的温柔 2024-07-22 12:30:17

当然。 一种方法是:

  1. 转到“工具”->“自定义”。
  2. 选择“自定义”选项卡
  3. 通过单击“添加工具”(最左边的按钮,“命令”一词的正上方)创建一个新的空白按钮
  4. 使用“更改图标”按钮为新按钮选择一个图标(否则它将是空白的并获胜)不会显示在工具栏中)
  5. 要让按钮提交已编译的宏,请在命令字段中键入以下内容(当然替换您的宏名称):

    %nameofmacro;run;

  6. 要让按钮提交外部 sas 文件,您可以在命令字段中输入类似的内容:

    %include "C:\path-to-file\name-of-program.sas";run;

  7. 在帮助文本和提示文本字段中输入您想要的内容

  8. 单击“确定”,然后保存

Certainly. Here is one way:

  1. Go to Tools->Customize.
  2. Select the Customize Tab
  3. Create a new blank button by clicking the "Add Tool" (left most button, right above the word "command"
  4. Select an icon for the new button using the "change icon" button (otherwise it will be blank and won't show up in the toolbar)
  5. To have the button submit a compiled macro, type this in the command field (substituting your macro name of course):

    %nameofmacro;run;

  6. To have the button submit an external sas file, you would put something like this in the command field instead:

    %include "C:\path-to-file\name-of-program.sas";run;

  7. Put whatever you want in the help text and tip text fields

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