Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 56287
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T17:30:39+00:00 2026-05-10T17:30:39+00:00

Okay, this is just a crazy idea I have. Stack Overflow looks very structured

  • 0

Okay, this is just a crazy idea I have. Stack Overflow looks very structured and integrable into development applications. So would it be possible, even useful, to have a Stack Overflow plugin for, say, Eclipse?

Which features of Stack Overflow would you like to have directly integrated into your IDE so you can use it ‘natively’ without changing to a browser?

EDIT: I’m thinking about ways of deeper integration than just using the web page inside the IDE. Like when you use a certain Java class and have a problem, answers from SO might flare up. There would probably be cases where something like this is annoying, but others may be very helpful.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-10T17:30:40+00:00Added an answer on May 10, 2026 at 5:30 pm

    Following up on Josh’s answer. This VS Macro will search StackOverflow for highlighted text in the Visual Studio IDE. Just highlight and press Alt+F1

    Public Sub SearchStackOverflowForSelectedText()     Dim s As String = ActiveWindowSelection().Trim()     If s.Length > 0 Then         DTE.ItemOperations.Navigate('http://www.stackoverflow.com/search?q=' & _             Web.HttpUtility.UrlEncode(s))     End If End Sub  Private Function ActiveWindowSelection() As String     If DTE.ActiveWindow.ObjectKind = EnvDTE.Constants.vsWindowKindOutput Then         Return OutputWindowSelection()     End If     If DTE.ActiveWindow.ObjectKind = '{57312C73-6202-49E9-B1E1-40EA1A6DC1F6}' Then         Return HTMLEditorSelection()     End If     Return SelectionText(DTE.ActiveWindow.Selection) End Function  Private Function HTMLEditorSelection() As String     Dim hw As HTMLWindow = ActiveDocument.ActiveWindow.Object     Dim tw As TextWindow = hw.CurrentTabObject     Return SelectionText(tw.Selection) End Function  Private Function OutputWindowSelection() As String     Dim w As Window = DTE.Windows.Item(EnvDTE.Constants.vsWindowKindOutput)     Dim ow As OutputWindow = w.Object     Dim owp As OutputWindowPane = ow.OutputWindowPanes.Item(ow.ActivePane.Name)     Return SelectionText(owp.TextDocument.Selection) End Function  Private Function SelectionText(ByVal sel As EnvDTE.TextSelection) As String     If sel Is Nothing Then         Return ''     End If     If sel.Text.Length = 0 Then         SelectWord(sel)     End If     If sel.Text.Length <= 2 Then         Return ''     End If     Return sel.Text End Function  Private Sub SelectWord(ByVal sel As EnvDTE.TextSelection)     Dim leftPos As Integer     Dim line As Integer     Dim pt As EnvDTE.EditPoint = sel.ActivePoint.CreateEditPoint()      sel.WordLeft(True, 1)     line = sel.TextRanges.Item(1).StartPoint.Line     leftPos = sel.TextRanges.Item(1).StartPoint.LineCharOffset     pt.MoveToLineAndOffset(line, leftPos)     sel.MoveToPoint(pt)     sel.WordRight(True, 1) End Sub 

    To install:

    1. go to Tools – Macros – IDE
    2. create a new Module with a name of your choice under ‘MyMacros’. Or use an existing module.
    3. paste the above code into the module
    4. add a reference to the System.Web namespace (for HttpUtility) to the module
    5. close the macro IDE window
    6. go to Tools – Options – Environment – Keyboard
    7. type ‘google’ in the Show Commands Containing textbox. The SearchGoogleForSelectedText macro should show up
    8. click in the Press Shortcut Keys textbox, then press ALT+F1
    9. click the Assign button
    10. click OK

    This is all taken from Jeff Atwood’s Google Search VS Macro post, just modified to search StackOverflow instead.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 62k
  • Answers 62k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer This would generally be handled via IIS configuration or with… May 11, 2026 at 10:00 am
  • added an answer It's perfectly 'safe' to delete a null pointer; it effectively… May 11, 2026 at 10:00 am
  • added an answer Some people swear by Predicate Builder. Personally, I've always found… May 11, 2026 at 10:00 am

Related Questions

Okay, this is just a crazy idea I have. Stack Overflow looks very structured
Okay, I guess this is entirely subjective and whatnot, but I was thinking about
Okay this is a fairly broad question. This is my first App and I'm
Okay this is a real headscratcher. I have an application which calls a web
Okay this is not a question of how to get all uniques or How
Okay, my dilemma is this. I have an admin page that I use to
Okay I have this RewriteRule which is supposed to redirect any request for the
Or is it okay to do something like this: new Thread( new ThreadStart( delegate
Okay, this may be a dumb question, but I've not been able to find
Okay, so this probably sounds terribly nefarious, but I need such capabilities for my

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.