c++ Programming Glossary: firstline
visual studio C++ toggle comment ? comment while not whole line is selected? http://stackoverflow.com/questions/4350744/visual-studio-c-toggle-comment-comment-while-not-whole-line-is-selected Dim sel As TextSelection DTE.ActiveDocument.Selection Dim firstLine As Integer sel.TopPoint.Line Dim lastLine As Integer sel.BottomPoint.Line.. Dim lastLine As Integer sel.BottomPoint.Line sel.GotoLine firstLine True sel.LineDown True lastLine firstLine sel.EndOfLine True.. sel.GotoLine firstLine True sel.LineDown True lastLine firstLine sel.EndOfLine True 'we un comment only if there is no commented..
|