This is a little IDE Tool.
It search on MSDN (Internet) for the word under the cursor in the IDE
Only add it to the "Tools" and give a shortcut like Ctrl + F1, and using '%WORD' for its arguments.
Code: Select all
Define.s Word
Word = GetEnvironmentVariable("PB_TOOL_Word")
If Word
If Right(Word, 1) = "_"
Word = Left(Word, Len(Word) -1)
ElseIf Left(Word, 1) = "#"
Word = Right(Word,Len(Word) -1)
EndIf
RunProgram("rundll32.exe","url.dll,FileProtocolHandler http://www.google.de/search?q=site:msdn.microsoft.com+msdn+win32+" + Word + "&btnI=true", "")
EndIf