主题:VF中能否一次注释多行?
dazhou
[专家分:10] 发布于 2005-11-24 03:28:00
请问在vf中能不能一次注释多行,如果一段代码要注释怎么办?
回复列表 (共29个回复)
21 楼
junziyang [专家分:150] 发布于 2007-12-02 08:06:00
http://www.vftool.com
2.2版还有代码自动完成等功能,感觉很不错。
只是试用版,那个高手给pj一下就好了!
22 楼
lzcx2083 [专家分:0] 发布于 2008-03-18 00:01:00
此方法很好用
但有一个问题:
如果本行没有注释,去注释时会删掉开始的字符,
能否在去注释时加一个判断,非注释行不作处理?
我自己尝试加判断,没有成功
惭愧。
23 楼
maxperson [专家分:70] 发布于 2008-05-26 12:46:00
Sub CommentLine()
'DESCRIPTION: 注释若干行
Dim EndLine, CurrLine
EndLine=ActiveDocument.Selection.BottomLine
ActiveDocument.Selection.StartOfLine
CurrLine=ActiveDocument.Selection.CurrentLine
while ( CurrLine<=EndLine )
ActiveDocument.Selection.SelectLine
ActiveDocument.Selection = "!" + ActiveDocument.Selection
CurrLine=ActiveDocument.Selection.CurrentLine
wend
End Sub
Sub UnCommentLine()
'DESCRIPTION: 去掉若干行的注释
Dim EndLine, CurrLine, CurrText
EndLine=ActiveDocument.Selection.BottomLine
ActiveDocument.Selection.StartOfLine
CurrLine=ActiveDocument.Selection.CurrentLine
while ( CurrLine<=EndLine )
ActiveDocument.Selection.SelectLine
CurrText = ActiveDocument.Selection
if ( Left(CurrText, 1) = "!" ) then
CurrText = Right(CurrText, Len(CurrText)-1)
ActiveDocument.Selection = CurrText
CurrLine=ActiveDocument.Selection.CurrentLine
else
CurrLine=CurrLine+1
ActiveDocument.Selection.LineDown
ActiveDocument.Selection.LineUp
end if
wend
End Sub
复制保存到一*.txt文档,将*.txt文档改为Commentline.dsm添加到以下路径
*\Microsoft Visual Studio\Common\MSDEV98\MACROS
在cvf中启用该宏,并设置一快捷键即可
24 楼
fortuneteller [专家分:0] 发布于 2008-07-15 11:54:00
很简单。在你注释段最后面即新一行加上标号 例如 100 print “comment end”。注释最前面写 go to 100
25 楼
xiashuning [专家分:110] 发布于 2008-11-24 13:27:00
老帖子长新见识阿。谢谢。
26 楼
xiaoji3431 [专家分:0] 发布于 2008-11-24 19:02:00
长期寻求网站入侵人员,拿欧美站,本人自己懂编程写木马,现在差一个网站入侵人员合作目前编写出来的网马大概种马率在40-50左右,而且是12合1体积在20K超高质量网马有意者联系QQ25498276详谈,半年内包你开宝马
27 楼
skysky198344 [专家分:0] 发布于 2008-12-17 21:17:00
这个问题提得好,fortran 里面最麻烦的就是这个破玩意了。
不过我觉得还是软件本身的问题,fortran这一点实在不咋地。
28 楼
dokkdb [专家分:0] 发布于 2009-09-21 14:57:00
[quote]很简单。在你注释段最后面即新一行加上标号 例如 100 print “comment end”。注释最前面写 go to 100[/quote]
觉得这个办法不错!!
29 楼
ch06 [专家分:30] 发布于 2010-02-01 10:47:00
24楼也是一个不错的方法。
我来回复