<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx</link><description>I have used Windows Vista from last November and now I have noticed that I'm really heavy user of search. Before Vista I had a lot of problems finding my stuff because I just couldn't remember where I have saved my files. I used my own directory structures</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#1914243</link><pubDate>Mon, 19 Mar 2007 22:23:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:1914243</guid><dc:creator>jannemattila</dc:creator><description>&lt;p&gt;Hi everybody!&lt;/p&gt;
&lt;p&gt;I got an email from Greg, who wanted to achieve this same functionality from the VS Macro. I did little test with following code:&lt;/p&gt;
&lt;p&gt;Imports System&lt;/p&gt;
&lt;p&gt;Imports EnvDTE&lt;/p&gt;
&lt;p&gt;Imports EnvDTE80&lt;/p&gt;
&lt;p&gt;Imports System.Diagnostics&lt;/p&gt;
&lt;p&gt;Imports System.Runtime.InteropServices&lt;/p&gt;
&lt;p&gt;Imports System.Windows.Forms&lt;/p&gt;
&lt;p&gt;Public Module MyAddin&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;DllImport(&amp;quot;user32.dll&amp;quot;, EntryPoint:=&amp;quot;keybd_event&amp;quot;)&amp;gt; _&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Public Sub KeyboardEvent(ByVal bVk As System.UInt32, ByVal bScan As System.UInt32, ByVal dwFlags As System.UInt32, ByVal dwExtraInfo As System.UInt32)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;End Sub&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Public ReadOnly VK_LWIN As UInteger = 91&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Public ReadOnly KEYEVENTF_EXTENDEDKEY As UInteger = 1&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Public ReadOnly KEYEVENTF_KEYUP As UInteger = 2&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Sub Macro1()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;KeyboardEvent(VK_LWIN, 0, 0, 0)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;KeyboardEvent(VK_LWIN, 0, KEYEVENTF_KEYUP, 0)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;SendKeys.Send(&amp;quot;word{ENTER}&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;End Sub&lt;/p&gt;
&lt;p&gt;End Module&lt;/p&gt;
&lt;p&gt;KeyboardEvent part works fine, but when you try to use SendKeys you got following error message:&lt;/p&gt;
&lt;p&gt;&amp;quot;SendKeys cannot run inside this application because the application is not handling Windows messages. Either change the application to handle messages, or use SendKeys.SendWait method.&amp;quot;&lt;/p&gt;
&lt;p&gt;So you could make this stuff work from macro as well, but you can't use SendKeys.Send. No problem... just replace that line with this one:&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;SendKeys.SendWait(&amp;quot;word{ENTER}&amp;quot;)&lt;/p&gt;
&lt;p&gt;So here's the final code:&lt;/p&gt;
&lt;p&gt;Imports System&lt;/p&gt;
&lt;p&gt;Imports EnvDTE&lt;/p&gt;
&lt;p&gt;Imports EnvDTE80&lt;/p&gt;
&lt;p&gt;Imports System.Diagnostics&lt;/p&gt;
&lt;p&gt;Imports System.Runtime.InteropServices&lt;/p&gt;
&lt;p&gt;Imports System.Windows.Forms&lt;/p&gt;
&lt;p&gt;Public Module MyAddin&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&amp;lt;DllImport(&amp;quot;user32.dll&amp;quot;, EntryPoint:=&amp;quot;keybd_event&amp;quot;)&amp;gt; _&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Public Sub KeyboardEvent(ByVal bVk As System.UInt32, ByVal bScan As System.UInt32, ByVal dwFlags As System.UInt32, ByVal dwExtraInfo As System.UInt32)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;End Sub&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Public ReadOnly VK_LWIN As UInteger = 91&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Public ReadOnly KEYEVENTF_EXTENDEDKEY As UInteger = 1&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Public ReadOnly KEYEVENTF_KEYUP As UInteger = 2&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;Sub Macro1()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;KeyboardEvent(VK_LWIN, 0, 0, 0)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;KeyboardEvent(VK_LWIN, 0, KEYEVENTF_KEYUP, 0)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;SendKeys.SendWait(&amp;quot;word{ENTER}&amp;quot;)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;End Sub&lt;/p&gt;
&lt;p&gt;End Module&lt;/p&gt;
&lt;p&gt;Happy hacking!&lt;/p&gt;
&lt;p&gt;J&lt;/p&gt;
</description></item><item><title>re: Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#2130384</link><pubDate>Sat, 14 Apr 2007 14:08:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2130384</guid><dc:creator>Colin</dc:creator><description>&lt;p&gt;Thank you!&lt;/p&gt;
&lt;p&gt;[url=&lt;a rel="nofollow" target="_new" href="http://bguyjfvb.com/ddbx/trbw.html"&gt;http://bguyjfvb.com/ddbx/trbw.html&lt;/a&gt;]My homepage[/url] | [url=&lt;a rel="nofollow" target="_new" href="http://atezmifj.com/hxxy/yegc.html"&gt;http://atezmifj.com/hxxy/yegc.html&lt;/a&gt;]Cool site[/url]&lt;/p&gt;
</description></item><item><title>re: Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#2130395</link><pubDate>Sat, 14 Apr 2007 14:09:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2130395</guid><dc:creator>Debbie</dc:creator><description>&lt;p&gt;Well done!&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&amp;quot;&lt;a rel="nofollow" target="_new" href="http://bguyjfvb.com/ddbx/trbw.html&amp;quot;&amp;gt;My"&gt;http://bguyjfvb.com/ddbx/trbw.html&amp;quot;&amp;gt;My&lt;/a&gt; homepage&amp;lt;/a&amp;gt; | &amp;lt;a href=&amp;quot;&lt;a rel="nofollow" target="_new" href="http://udufyljx.com/mzdy/fvbf.html&amp;quot;&amp;gt;Please"&gt;http://udufyljx.com/mzdy/fvbf.html&amp;quot;&amp;gt;Please&lt;/a&gt; visit&amp;lt;/a&amp;gt;&lt;/p&gt;
</description></item><item><title>re: Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#2130421</link><pubDate>Sat, 14 Apr 2007 14:10:58 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2130421</guid><dc:creator>Maggie</dc:creator><description>&lt;p&gt;Thank you!&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://bguyjfvb.com/ddbx/trbw.html"&gt;http://bguyjfvb.com/ddbx/trbw.html&lt;/a&gt; | &lt;a rel="nofollow" target="_new" href="http://rjvbjcij.com/fvtm/cpey.html"&gt;http://rjvbjcij.com/fvtm/cpey.html&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#2597499</link><pubDate>Sun, 13 May 2007 14:04:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:2597499</guid><dc:creator>Bill</dc:creator><description>&lt;p&gt;MSN I NIIPET&lt;/p&gt;
&lt;p&gt;&amp;lt;a href=&amp;quot;&lt;a rel="nofollow" target="_new" href="http://msn.com&amp;quot;&amp;gt;MSN&amp;lt;/a&amp;gt;"&gt;http://msn.com&amp;quot;&amp;gt;MSN&amp;lt;/a&amp;gt;&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>re: Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#4167755</link><pubDate>Wed, 01 Aug 2007 16:16:47 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4167755</guid><dc:creator>spellstomakemepsychic</dc:creator><description>&lt;p&gt;&amp;lt;a href=&amp;quot;httpwwwdhcgpdiacnpage45html&amp;quot;&amp;gt;abcseniormiddleeastcorrespondent&amp;lt;/a&amp;gt; abcseniormiddleeastcorrespondent,&amp;lt;a href=&amp;quot;httpwwwdhcgpdiacnpage64html&amp;quot;&amp;gt;vb6getwindowsfolder&amp;lt;/a&amp;gt; vb6getwindowsfolder,&amp;lt;a href=&amp;quot;httpwwwdhcgpdiacnpage69html&amp;quot;&amp;gt;jetairairwayslogobag&amp;lt;/a&amp;gt; jetairairwayslogobag,&amp;lt;a href=&amp;quot;httpwwwdhcgpdiacnpage69html&amp;quot;&amp;gt;usairwaysdividendmilesvisasignaturecard&amp;lt;/a&amp;gt; usairwaysdividendmilesvisasignaturecard,&amp;lt;a href=&amp;quot;httpwwwdhcgpdiacnpage56html&amp;quot;&amp;gt;egforumsgtdaviddrake&amp;lt;/a&amp;gt; egforumsgtdaviddrake,&amp;lt;a href=&amp;quot;httpwwwdhcgpdiacnpage63html&amp;quot;&amp;gt;checkeredflagdie-cast&amp;lt;/a&amp;gt; checkeredflagdie-cast,&amp;lt;a href=&amp;quot;httpwwwdhcgpdiacnpage62html&amp;quot;&amp;gt;harmlessdeception&amp;lt;/a&amp;gt; harmlessdeception,&amp;lt;a href=&amp;quot;httpwwwdhcgpdiacnpage66html&amp;quot;&amp;gt;harveyfenton&amp;lt;/a&amp;gt; harveyfenton,&amp;lt;a href=&amp;quot;httpwwwdhcgpdiacnpage65html&amp;quot;&amp;gt;photoshopelementsslideshow&amp;lt;/a&amp;gt; photoshopelementsslideshow,&amp;lt;a href=&amp;quot;httpwwwdhcgpdiacnpage56html&amp;quot;&amp;gt;wwwegsparkcomtr&amp;lt;/a&amp;gt; wwwegsparkcomtr,&lt;/p&gt;
</description></item><item><title>re: Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#4174759</link><pubDate>Wed, 01 Aug 2007 21:56:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4174759</guid><dc:creator>howfarcouldthewhistlesbebeheardofthetitanic</dc:creator><description>&lt;p&gt;&amp;lt;a href=&amp;quot;httpwwwqrqplfsbcnpage49html&amp;quot;&amp;gt;circleteachertelevisionseriesblackboard&amp;lt;/a&amp;gt; circleteachertelevisionseriesblackboard,&amp;lt;a href=&amp;quot;httpwwwqrqplfsbcnpage46html&amp;quot;&amp;gt;howlingiiithemarsupialsimdb&amp;lt;/a&amp;gt; howlingiiithemarsupialsimdb,&amp;lt;a href=&amp;quot;httpwwwqrqplfsbcnpage41html&amp;quot;&amp;gt;genresinlibraries&amp;lt;/a&amp;gt; genresinlibraries,&amp;lt;a href=&amp;quot;httpwwwqrqplfsbcnpage45html&amp;quot;&amp;gt;clementefieldnewyork&amp;lt;/a&amp;gt; clementefieldnewyork,&amp;lt;a href=&amp;quot;httpwwwqrqplfsbcnpage50html&amp;quot;&amp;gt;presariov2000batteries&amp;lt;/a&amp;gt; presariov2000batteries,&amp;lt;a href=&amp;quot;httpwwwqrqplfsbcnpage42html&amp;quot;&amp;gt;michaeljordanlastshotphoto&amp;lt;/a&amp;gt; michaeljordanlastshotphoto,&amp;lt;a href=&amp;quot;httpwwwqrqplfsbcnpage35html&amp;quot;&amp;gt;musiccomposedbydavidholmesinoceanstwelve&amp;lt;/a&amp;gt; musiccomposedbydavidholmesinoceanstwelve,&amp;lt;a href=&amp;quot;httpwwwqrqplfsbcnpage37html&amp;quot;&amp;gt;johnsonjb-106&amp;lt;/a&amp;gt; johnsonjb-106,&amp;lt;a href=&amp;quot;httpwwwqrqplfsbcnpage55html&amp;quot;&amp;gt;middleagebrewsters&amp;lt;/a&amp;gt; middleagebrewsters,&amp;lt;a href=&amp;quot;httpwwwqrqplfsbcnpage55html&amp;quot;&amp;gt;summervacationrentalsandlongpondandbrewster&amp;lt;/a&amp;gt; summervacationrentalsandlongpondandbrewster,&lt;/p&gt;
</description></item><item><title>re: Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#5294625</link><pubDate>Fri, 05 Oct 2007 18:24:44 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5294625</guid><dc:creator>Sasha </dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Came across the article. Had a quick question though? Is there a way by which I can create an Add-In to catch key presses in Visual Studio. Thanks!&lt;/p&gt;
&lt;p&gt;Sasha&lt;/p&gt;
</description></item><item><title>re: Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#5650729</link><pubDate>Wed, 24 Oct 2007 17:22:27 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5650729</guid><dc:creator>jannemattila</dc:creator><description>&lt;p&gt;Hi Sasha!&lt;/p&gt;
&lt;p&gt;Actually I don't believe that you can do that easily. Of course there are ways to start listening keyboard presses to achieve some kind of fancy features but you need to be careful not to make it spend too many CPU cycles on your custom feature.&lt;/p&gt;
&lt;p&gt;What is that you're trying to achieve?&lt;/p&gt;
&lt;p&gt;J&lt;/p&gt;
</description></item><item><title>Most Useful 20+ Visual Studio Add-ins</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#8536886</link><pubDate>Fri, 23 May 2008 08:34:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8536886</guid><dc:creator>Agusto Xaverius P.S</dc:creator><description>&lt;p&gt;This is the list of the Visual Studio Add-ins, most of which are open source or free. I hope this list&lt;/p&gt;
</description></item><item><title>re: Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#9852124</link><pubDate>Wed, 29 Jul 2009 17:01:11 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9852124</guid><dc:creator>oknare</dc:creator><description>&lt;p&gt;Недорогая установка окон пвх, установка деревянных окон, технология установки окон, установка окон в деревянном доме, инструкция по установке окон, технология установки пластиковых окон, фирмы по установке окон, установка окон цена, договор на установку окон, установка решеток на окнах, установка решеток на окна, установка металлопластиковых окон, установка окон самостоятельно, установка мансардных окон, установка окон своими руками, инструкция по установке пластиковых окон&lt;/p&gt;
</description></item><item><title>re: Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#9855341</link><pubDate>Sat, 01 Aug 2009 23:51:17 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9855341</guid><dc:creator>oskvad</dc:creator><description>&lt;p&gt;Бесплатный секс интим знакомства, интим знакомства forum, интим знакомство краснодар, секс интим знакомства, интим знакомства фото, знакомства интим yabb, интим знакомства уфа, самара знакомства интим, интим знакомства петербург, интим знакомства саратова, знакомства интим нижний, интим знакомства москва, знакомства интим threads, питер интим знакомства, интим знакомства ростов, знакомства интим showthread php, знакомства интим minibb, интим знакомства question index&lt;/p&gt;
</description></item><item><title>re: Visual Studio Add-in: Use Vista Search directly from Visual Studio</title><link>http://blogs.msdn.com/jannemattila/archive/2007/03/04/visual-studio-add-in-use-vista-search-directly-from-visual-studio.aspx#9857358</link><pubDate>Tue, 04 Aug 2009 22:17:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9857358</guid><dc:creator>komstu</dc:creator><description>&lt;p&gt;Intim интим знакомства, интим знакомства forum, интим знакомство краснодар, секс интим знакомства, интим знакомства фото, знакомства интим yabb, интим знакомства уфа, самара знакомства интим, интим знакомства петербург, интим знакомства саратова, знакомства интим нижний, интим знакомства москва, знакомства интим threads, питер интим знакомства, интим знакомства ростов, знакомства интим showthread php, знакомства интим minibb, интим знакомства text index&lt;/p&gt;
</description></item></channel></rss>