请问能获取当前正在运行的是什么命令吗?
如果能知道,想实现点击自己的帮助就能针对当前的命令跳转到不同的帮助文件。系统变量cmdnames 谢谢!
我找到了这个也可以用
Dim doc As Document = Application.DocumentManager.MdiActiveDocument
If Not doc.CommandInProgress = Nothing Then
Call gghelp(doc.CommandInProgress.ToLower)
End If
这样命令运行一半的时候不会了,就可以点击帮助按钮,给出个提示。
页:
[1]