zoukankan      html  css  js  c++  java
  • Macro

        Sub CommentTONextLine()
            DTE.ActiveDocument.Selection.EndOfLine(True)
            DTE.ActiveDocument.Selection.Cut()
            DTE.ActiveDocument.Selection.LineDown()
            DTE.ActiveDocument.Selection.EndOfLine()
            DTE.ActiveDocument.Selection.Indent()
            DTE.ActiveDocument.Selection.Paste()
            DTE.ActiveDocument.Selection.LineUp()
            DTE.ExecuteCommand("Edit.LineDelete")
            DTE.ActiveDocument.Save()
        End Sub
        Sub TemporaryMacro_()
            DTE.ActiveDocument.Selection.EndOfLine(True)
            DTE.ActiveDocument.Selection.Cut()
            DTE.ActiveDocument.Selection.LineDown()
            DTE.ActiveDocument.Selection.WordRight(True)
            DTE.ActiveDocument.Selection.Delete()
            DTE.ActiveDocument.Selection.EndOfLine()
            DTE.ActiveDocument.Selection.WordRight(True)
            DTE.ActiveDocument.Selection.Delete()
            DTE.ExecuteCommand("Edit.LineCut")
        End Sub
    男人就是责任!
  • 相关阅读:
    读书书单
    Kafka学习-Producer和Customer
    Kafka学习-简介
    Maven学习-Profile详解
    Maven学习-项目对象模型
    Maven学习-优化和重构POM
    Maven学习-构建项目
    Maven学习-简介、安装
    连接web端,mysql,返回乱码解决
    android alipay
  • 原文地址:https://www.cnblogs.com/snben/p/2721688.html
Copyright © 2011-2022 走看看