在eclipse等编辑工具中都有注释代码的快捷键,但是vc++6.0没有。

vc++是以VB为脚本来控制的,在网上找到了一个VB的脚本供大家使用。

 

工具/原料

  • VC++6.0

方法/步骤

  1. 打开VC的路径,根据自己安装的路径打开,如果找不到可以根据快捷键的属性进行查阅。

     
  2.  

    在目录里面创建一个空文本,将名字命名为comment.dsm

    在文件里面添加一下代码:

    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 = "//"  ' 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 If

    End Sub

     
  3.  

    打开软件,找到“工具”选择“定制”。

     
  4.  

    在弹出的窗口中选择“附加项和宏文件”将“comment”复选框选中,然后单击“键盘”

     
  5.  

    选择“macros”

     
  6.  

    添加新的快捷键"Ctrl+/"或按照自己喜欢的快捷方式设置。

     
  7.  

    ok,下面是使用的情况,快捷键是可以使用的。

     
    END
 
 

出处:http://jingyan.baidu.com/article/2c8c281df4c7d40009252a4f.html

VC++6.0注释快捷键的添加使用的更多相关文章

  1. VC++6.0注释快捷键设置

    在Qt Creator,eclipse等编辑器中,都默认有注释代码的快捷键:Ctrl + /. 注释快捷键在程序编程当中的作用相当明显,提高了编程效率.我在网上找到了一个在VC++6.0工具中添加注释 ...

  2. 转载:VC++6.0注释快捷键设置,略有修改

    在Qt Creator,eclipse等编辑器中,都默认有注释代码的快捷键:Ctrl + /. 注释快捷键在程序编程当中的作用相当明显,提高了编程效率.我在网上找到了一个在VC++6.0工具中添加注释 ...

  3. 解决VC++6.0打开文件或添加文件到工程出错的问题

    相信很多朋友在安装VC++6.0之后,发现无法使用打开文件命令.同时,打开了工程,却无法实现文件添加到工程的问题.一旦进行如此操作,便会出现应用程序错误,需要关闭应用程序.为此,不胜其烦.更有甚者,以 ...

  4. VC++6.0 add files to project 造成Visual Studio崩溃的解决方法

    1.下载filetool.exe,然后将文件解压在一个小文件夹内2.打开filetool.dsw 在release模式下编译程序,复制filetool.dll3.放在VC6.0安装目录AddIns的下 ...

  5. 解决VC++6.0 无法打开、无法添加工程文件

    在windows系统下,经常会遇到这样的问题:点击VC++6.0 的[文件]下的[打开]无法操作,并且无法向工程添加文件,下面详细介绍一下解决方案? 工具/原料 VC++6.0 修复工具:FileTo ...

  6. VC++6.0一些常见问题解决方法(打开多个窗口、行号、添加文件无响应、更改.exe图标及名称等等)

    背景: 最近使用VC++6.0做一个界面,供测试CAN通信使用.由于客户希望我们提供简单方便的函数接口让其最快速使用CAN,DLL(动态链接库)是不二之选.做DLL需要两个VC窗口进行测试才方便.可是 ...

  7. VC-关于VC++ 6.0的那些事儿

    Microsoft Visual C++,(简称Visual C++.MSVC.VC++或VC)微软公司的C++开发工具,具有集成开发环境,可提供编辑C语言,C++以及C++/CLI等编程语言.VC+ ...

  8. VC++ 6.0中实现三叉切分窗口与多视图 [转]

    一.引用 当用户需要同时对文当的不同部分进行编辑时,常常会用到切分窗口;这些窗口可以都是相同的视,或者一个窗口为列表视,而另一个为树型视图.应用程序框架有多种方式来表示多视图,切分窗口是其中的方式之一 ...

  9. ACE的构建(VC++6.0环境)

    ACE的构建(VC++6.0环境)Windows下ACE的构建1. 将ACE-5.5.zip解压到所需的安装目录,此处以E:/为例,解压后形成ACE_wrappers文件夹,因此ACE将会存在于ACE ...

随机推荐

  1. android菜鸟学习笔记22----ContentProvider(二)ContentObserver的简单使用

    现在有这样一个应用A通过ContentProvider提供自己的数据给其他应用,应用B通过ContentResolver获取应用A中提供的数据,并将其展示在ListView中,而应用C通过Conten ...

  2. Frobenius inner product

    https://en.wikipedia.org/wiki/Frobenius_inner_product Frobenius norm

  3. php, tp5, 选中导航菜单

    1. 首先定义一个函数: function nav_select($navindex){ $nav_arr = [ 1 => ['index',], 2 => ['mei',], 3 =& ...

  4. php自定义函数: 计算两个时间日期相隔的天数,时,分,秒

    function timediff( $begin_time, $end_time ) { if ( $begin_time < $end_time ) { $starttime = $begi ...

  5. 我的Android进阶之旅------>Android疯狂连连看游戏的实现之实现游戏逻辑(五)

    在上一篇<我的Android进阶之旅------>Android疯狂连连看游戏的实现之加载界面图片和实现游戏Activity(四)>中提到的两个类: GameConf:负责管理游戏的 ...

  6. Android开发之深入理解泛型extends和super的区别

    摘要: 什么是泛型?什么是擦除边界?什么是上界限定或下界限定(子类型限定或超类型限定)?什么是类型安全?泛型extends关和super关键字结合通配符?使用的区别,两种泛型在实际Android开发中 ...

  7. ppm图像相关

    PPM图像格式介绍 直接拿具体的数据来说明是最直接的,使用ue打开ppm文件,采用的都是十六进制asc码表示的,这里要注意地址00000000h中的最后一个字母是始终不变的,这原来没注意晕了我好久,第 ...

  8. 根据UI找对应的j s 脚本

    1.页面内容的脚本 2.页面外部脚本 3.根据UI找j s 脚本

  9. linux shell 基础 使用日志与心得

    linux shell 基础 使用日志与心得 1.#!/bin/bash 第一行就出现#!/bin/bash是指此脚本使用/bin/bash来解释执行.其中,#!是一个特殊的表示符,其后,跟着解释此脚 ...

  10. day 5 模块导入、常用模块os shutil sys commands subprocess hashlib json pickle zipfile traceback random datetime

    os: os.getcwd() 获取当前工作目录,即当前python脚本工作的目录路径 os.chdir("dirname") 改变当前脚本工作目录:相当于shell下cd os. ...