有没有人知道@command的名称是什么,用于回复和回复所有人的lotus notes。我真的很想为这两个键定义一个快捷键,我需要知道它的命令名。
有人能帮上忙吗?
发布于 2009-12-23 01:20:17
简短的答案是:
@Command([Compose];"Reply With History")然而,回复有不同的格式和风格。如果在Domino Designer中打开邮件数据库或邮件模板(例如: mail8.ntf)并查看Shared Code下的Actions部分,就会看到IBM使用的@命令。例如,对于标准的“使用历史记录回复”操作按钮,您可以使用以下代码:
path :=@ReplaceSubstring(@ReplaceSubstring(@Subset(@DbName; -1); "\\"; "/");" ";"+") ;
Format:=@GetProfileField("CalendarProfile"; "FormatReplies");
FormatChar:=@GetProfileField("CalendarProfile";"OffsetChar");
@If(Format="1";@URLOpen("/" + path + "/Reply+With+History?OpenForm&ParentUNID=" +
@Replace(@Text(@DocumentUniqueID); ":";
"" )+"&Format="+Formatchar);@Command([Compose];"Reply With History"))发布于 2009-12-28 07:09:09
使用操作栏中操作的快捷键- Alt+number (1-9)
https://stackoverflow.com/questions/1947586
复制相似问题