Click here to Skip to main content
15,880,725 members
Articles / Programming Languages / Visual Basic
Article

Macro for Google Search in VS.NET

Rate me:
Please Sign up or sign in to vote.
3.80/5 (10 votes)
1 Jul 2003 43.3K   361   17  
A simple-yet-powerful macro for VS.NET to search for selected text in google.

Introduction

You know, in these days the most popular internet site is Google. When I programmed, I always found resource at Google. But when I wanted to find resouces, I ran Internet Explorer, typed 'www.google.com' and typed keywords. It was very boring. So I made MACRO that find resources on google and shows its results in VS.NET's Web browser.

1. Select a key word or sentence (string).

Image 1

2. Execute the 'GoogleSearch' macro. You can directly execute in Macro Explorer where you can see it or register it as shortcut. If you execute the macro, the Web browser will be shown.

Image 2

Using the Code

This macro is very simple. You can learn all about it from the source code. For your convenience, I have added some comments.

The following is macro's source code.

VB.NET
Option Strict Off
Option Explicit Off
Imports EnvDTE

Public Module SMILE

    Sub GoogleSearch()
        Dim strUrl As String
        Dim selection As TextSelection = DTE.ActiveDocument.Selection()

        ' If user didn't select text, 
        ' show assert message box
        If selection.Text <> "" Then
            ' Google Search!
            strUrl = "www.google.co.kr/search?q=" + selection.Text
            ' Navigate it!
            DTE.ExecuteCommand("View.URL", strUrl)
        Else
            MsgBox("Select Text to find")
        End If
    End Sub

End Module

Points of Interest

As you know, VS.NET's IDE is very interesting and powerful. You can extend the VS.NET IDE however you want. If you check VS.NET's sample macro source file, you can learn from it. Try it now.

History

  • 06-02-2003 - Initial upload

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Software Developer (Senior)
Korea (Republic of) Korea (Republic of)
Woo Seok Seo have been a Microsoft MVP for 7 years and have translated several books into Korean. Author of C# Programming for Beginner (DevPress, 2001), he is interested in Debugging techniques and .NET technology. Get in touch with Woo Seok Seo at wooseok.seo@gmail.com

Comments and Discussions

 
-- There are no messages in this forum --