GetSelectedText – The highlighted string in the code window

GetSelectedText – The highlighted string in the code window

' Return the string of code the is selected in the code window' that is currently active. ' This function can only be used inside an add-in.Function GetSelectedText(VBInstance As VBIDE.VBE) As String     Dim startLine As Long, startCol As Long     Dim endLine As Long, endCol As Long     Dim codeText As String     Dim cpa As VBIDE.CodePane     Dim cmo As VBIDE.CodeModule        On Error Resume Next        ' get a reference to the active code window and the underlying module     ' exit if no one is available     Set cpa = VBInstance.ActiveCodePane     Set cmo = cpa.CodeModule     If Err Then Exit Function        ' get the current selection coordinates     cpa.GetSelection startLine, startCol, endLine, endCol     ' exit if no text is highlighted     If startLine = endLine And startCol = endCol Then Exit Function        ' get the code text     If startLine = endLine Then          ' only one line is partially or fully highlighted          codeText = Mid$(cmo.Lines(startLine, 1), startCol, endCol - startCol)     Else          ' the selection spans multiple lines of code          ' first, get the selection of the first line          codeText = Mid$(cmo.Lines(startLine, 1), startCol) & vbCrLf          ' then get the lines in the middle, that are fully highlighted          If startLine + 1 < endLine Then               codeText = codeText & cmo.Lines(startLine + 1, _                   endLine - startLine - 1)          End If          ' finally, get the highlighted portion of the last line          codeText = codeText & Left$(cmo.Lines(endLine, 1), endCol - 1)     End If        GetSelectedText = codeTextEnd Function

Share the Post:
Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular

XDR solutions

The Benefits of Using XDR Solutions

Cybercriminals constantly adapt their strategies, developing newer, more powerful, and intelligent ways to attack your network. Since security professionals must innovate as well, more conventional endpoint detection solutions have evolved

AI is revolutionizing fraud detection

How AI is Revolutionizing Fraud Detection

Artificial intelligence – commonly known as AI – means a form of technology with multiple uses. As a result, it has become extremely valuable to a number of businesses across

AI innovation

Companies Leading AI Innovation in 2023

Artificial intelligence (AI) has been transforming industries and revolutionizing business operations. AI’s potential to enhance efficiency and productivity has become crucial to many businesses. As we move into 2023, several

data fivetran pricing

Fivetran Pricing Explained

One of the biggest trends of the 21st century is the massive surge in analytics. Analytics is the process of utilizing data to drive future decision-making. With so much of

kubernetes logging

Kubernetes Logging: What You Need to Know

Kubernetes from Google is one of the most popular open-source and free container management solutions made to make managing and deploying applications easier. It has a solid architecture that makes