九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費電子書等14項超值服

開通VIP
VC++6.0注釋快捷鍵設置

VC++6.0注釋快捷鍵設置

分類: Windows編程 468人閱讀 評論(0) 收藏 舉報

在Qt Creator,eclipse等編輯器中,都默認有注釋代碼的快捷鍵:Ctrl + /。

注釋快捷鍵在程序編程當中的作用相當明顯,提高了編程效率。我在網(wǎng)上找到了一個在VC++6.0工具中添加注釋快捷鍵的方法,VC++6.0是以VB為腳本來配置的。


首先,找到VC++6.0的安裝路徑,假設在:D:\Program Files (x86)\Microsoft Visual Studio 6.0,那么進入到Common\MSDev98\Macros目錄下,全路徑為:D:\Program Files (x86)\Microsoft Visual Studio 6.0\Common\MSDev98\Macros。

在該目錄新建一個文本文件,并重命名為:comment.dsm,并打開增加以下內(nèi)容:

Sub CustomCommentOut()'DESCRIPTION: 注釋/取消注釋宏,可處理VB和C++、Java注釋	Dim win	set win = ActiveWindow	If win.type <> "Text" Then	  MsgBox "This macro can only be run when a text editor window is active."	Else		TypeOfFile = 3		If TypeOfFile > 0 And TypeOfFile < 6 Then			If TypeOfFile > 3 Then				CommentType = "'"	' VB注釋				CommentWidth = 1			Else				CommentType = "http://"	' C++、java 注釋				CommentWidth = 2			End If		 			StartLine = ActiveDocument.Selection.TopLine			EndLine = ActiveDocument.Selection.BottomLine			If EndLine < StartLine Then				Temp = StartLine				StartLine = EndLine				EndLine = Temp			End If			' 單行			If EndLine = StartLine Then				ActiveDocument.Selection.StartOfLine dsFirstColumn				ActiveDocument.Selection.CharRight dsExtend, CommentWidth				If ActiveDocument.Selection = CommentType Then					ActiveDocument.Selection.Delete				Else					ActiveDocument.Selection.StartOfLine dsFirstText					ActiveDocument.Selection.CharRight dsExtend, CommentWidth					If ActiveDocument.Selection = CommentType Then						ActiveDocument.Selection.CharRight dsExtend						ActiveDocument.Selection.Delete					Else						ActiveDocument.Selection.StartOfLine dsFirstText						ActiveDocument.Selection = CommentType + vbTab + _                                        ActiveDocument.Selection					End If				End If			' 多行			Else				For i = StartLine To EndLine					ActiveDocument.Selection.GoToLine i					CommentLoc = dsFirstColumn					ActiveDocument.Selection.StartOfLine CommentLoc					ActiveDocument.Selection.CharRight dsExtend, CommentWidth					If ActiveDocument.Selection = CommentType Then						ActiveDocument.Selection.Delete					Else						ActiveDocument.Selection.StartOfLine CommentLoc						ActiveDocument.Selection = CommentType + _                                                  ActiveDocument.Selection					End If				Next			End If		Else			MsgBox("Unable to comment out the highlighted text" + vbLf + _				"because the file type was unrecognized." + vbLf + _				"If the file has not yet been saved, " + vbLf + _				"please save it and try again.")		End If	End IfEnd Sub

此時打開VC++6.0窗口,以下步驟:

1.打開菜單欄"Tools" -> "Customize" 打開了"Customize"對話框。

2.

3.


4.在代碼中,只需要選中代碼或者在光標所在行,執(zhí)行快捷鍵"Ctrl + /",進行注釋或取消注釋。

本站僅提供存儲服務,所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點擊舉報
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
vc6中進行多行注釋和反注釋的方法
Word 宏命令大全
VC6.0中注釋快捷鍵的設置
你的身體會說話,缺啥一看就知道
Excel VBA 學習總結(jié) - 開發(fā)模式
Source Insight多行注釋的方法
更多類似文章 >>
生活服務
熱點新聞
分享 收藏 導長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點擊這里聯(lián)系客服!

聯(lián)系客服