|
|
|
Click here to copy the following block |
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 Set cpa = VBInstance.ActiveCodePane Set cmo = cpa.CodeModule If Err Then Exit Function cpa.GetSelection startLine, startCol, endLine, endCol If startLine = endLine And startCol = endCol Then Exit Function If startLine = endLine Then codeText = Mid$(cmo.Lines(startLine, 1), startCol, endCol - startCol) Else codeText = Mid$(cmo.Lines(startLine, 1), startCol) & vbCrLf If startLine + 1 < endLine Then codeText = codeText & cmo.Lines(startLine + 1, _ endLine - startLine - 1) End If codeText = codeText & Left$(cmo.Lines(endLine, 1), endCol - 1) End If GetSelectedText = codeText End Function |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|