如何通过我的操作的编辑器视图在我的代码中添加注释?我知道这是一个简单的问题,但我无法弄清楚,这对谷歌来说似乎几乎是不可能的。
我尝试了一些标准的评论类型,但都没有奏效:
//
/* */
#
--
我知道我可以将文本添加到 Action 的 Description 属性中,但我希望能够根据需要注释掉代码中的特定行。
您是指查看生成代码的专家视图吗?
您可以为此使用单引号字符:
' The user needs to be informed that the test is ready to run, so
' he can take appropriate actions before continue or Cancel if needed.
If MsgBox("The test is ready to start.", VbOKCancel) <> VbOK then
ExitTest
End If
注释/取消注释块的快捷方式:Ctrl+M 和 Ctrl+Shift+M