<?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>Windows Mobile 6.5 Web Browser Control: Enabling Gesture support</title><link>http://blogs.msdn.com/b/mikefrancis/archive/2009/07/21/windows-mobile-6-5-web-browser-control-enabling-gesture-support.aspx</link><description>One of the most powerful controls in the Windows Mobile developer toolbox is the Web Browser control. With this control, you can create applications as simple as displaying HTML, to more complex apps that interact with the DOM manipulating elements, and</description><dc:language>en-US</dc:language><generator>Telligent Evolution Platform Developer Build (Build: 5.6.50428.7875)</generator><item><title>re: Windows Mobile 6.5 Web Browser Control: Enabling Gesture support</title><link>http://blogs.msdn.com/b/mikefrancis/archive/2009/07/21/windows-mobile-6-5-web-browser-control-enabling-gesture-support.aspx#10029117</link><pubDate>Wed, 23 Jun 2010 17:38:12 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:10029117</guid><dc:creator>ReaperXT</dc:creator><description>&lt;p&gt;Hi mjf,&lt;/p&gt;
&lt;p&gt;Could you point me in the right direction to disabling selection in a C# .net 3.5 CF application? &lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=10029117" width="1" height="1"&gt;</description></item><item><title>re: Windows Mobile 6.5 Web Browser Control: Enabling Gesture support</title><link>http://blogs.msdn.com/b/mikefrancis/archive/2009/07/21/windows-mobile-6-5-web-browser-control-enabling-gesture-support.aspx#9967397</link><pubDate>Mon, 22 Feb 2010 14:14:06 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9967397</guid><dc:creator>M Francis</dc:creator><description>&lt;p&gt;Fll -&lt;/p&gt;
&lt;p&gt;For a compiled working sample see here: &lt;a rel="nofollow" target="_new" href="http://cid-e91b74403814953e.skydrive.live.com/self.aspx/BrowserWithGestures/BrowserWithGestures.zip"&gt;http://cid-e91b74403814953e.skydrive.live.com/self.aspx/BrowserWithGestures/BrowserWithGestures.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9967397" width="1" height="1"&gt;</description></item><item><title>re: Windows Mobile 6.5 Web Browser Control: Enabling Gesture support</title><link>http://blogs.msdn.com/b/mikefrancis/archive/2009/07/21/windows-mobile-6-5-web-browser-control-enabling-gesture-support.aspx#9966993</link><pubDate>Sun, 21 Feb 2010 06:55:23 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9966993</guid><dc:creator>fll</dc:creator><description>&lt;P&gt;IBrowser3 has not been compiled successfully on wm 6.&lt;/P&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9966993" width="1" height="1"&gt;</description></item><item><title>re: Windows Mobile 6.5 Web Browser Control: Enabling Gesture support</title><link>http://blogs.msdn.com/b/mikefrancis/archive/2009/07/21/windows-mobile-6-5-web-browser-control-enabling-gesture-support.aspx#9919851</link><pubDate>Mon, 09 Nov 2009 22:57:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9919851</guid><dc:creator>M Francis</dc:creator><description>&lt;p&gt;Try this:&lt;/p&gt;
&lt;p&gt;LPDISPATCH pDisp=NULL;&lt;/p&gt;
&lt;p&gt;// Get the dispatch interface&lt;/p&gt;
&lt;p&gt;m_spIWebBrowser2-&amp;gt;get_Document(&amp;amp;pDisp);&lt;/p&gt;
&lt;p&gt;if (pDisp==NULL)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;return -1;&lt;/p&gt;
&lt;p&gt;IBrowser3 * pBrowser3;&lt;/p&gt;
&lt;p&gt;HRESULT hRes = pDisp-&amp;gt;QueryInterface(IID_IBrowser3, (LPVOID*)&amp;amp;pBrowser3);&lt;/p&gt;
&lt;p&gt;…&lt;/p&gt;
&lt;p&gt;pBrowser3-&amp;gt;Release();&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9919851" width="1" height="1"&gt;</description></item><item><title>re: Windows Mobile 6.5 Web Browser Control: Enabling Gesture support</title><link>http://blogs.msdn.com/b/mikefrancis/archive/2009/07/21/windows-mobile-6-5-web-browser-control-enabling-gesture-support.aspx#9919835</link><pubDate>Mon, 09 Nov 2009 22:34:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9919835</guid><dc:creator>Mohan</dc:creator><description>&lt;p&gt;I tried this way&lt;/p&gt;
&lt;p&gt;IDispatch *dispatch = NULL;&lt;/p&gt;
&lt;p&gt;IWebBrowser2 *browser3 = NULL;&lt;/p&gt;
&lt;p&gt;m_spIWebBrowser2-&amp;gt;get_Document(&amp;amp;dispatch);&lt;/p&gt;
&lt;p&gt;dispatch-&amp;gt;QueryInterface(IID_IWebBrowser2, (void**)&amp;amp;browser3);&lt;/p&gt;
&lt;p&gt;but browser3 is NULL... Am I missing something here?? Please let me know&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9919835" width="1" height="1"&gt;</description></item><item><title>re: Windows Mobile 6.5 Web Browser Control: Enabling Gesture support</title><link>http://blogs.msdn.com/b/mikefrancis/archive/2009/07/21/windows-mobile-6-5-web-browser-control-enabling-gesture-support.aspx#9919133</link><pubDate>Sat, 07 Nov 2009 21:16:02 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9919133</guid><dc:creator>M Francis</dc:creator><description>&lt;p&gt;Mohan,&lt;/p&gt;
&lt;p&gt;That is corrent IBrowser3 has been deprecated. However, you can still access it following the instructions in the blog post.&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9919133" width="1" height="1"&gt;</description></item><item><title>re: Windows Mobile 6.5 Web Browser Control: Enabling Gesture support</title><link>http://blogs.msdn.com/b/mikefrancis/archive/2009/07/21/windows-mobile-6-5-web-browser-control-enabling-gesture-support.aspx#9918736</link><pubDate>Fri, 06 Nov 2009 18:45:22 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9918736</guid><dc:creator>Mohan</dc:creator><description>&lt;p&gt;Hi Mike,&lt;/p&gt;
&lt;p&gt;IBrowser3 is no longer supported in WM... is that true?&lt;/p&gt;
&lt;p&gt;&lt;a rel="nofollow" target="_new" href="http://social.msdn.microsoft.com/Forums/en-US/vssmartdevicesnative/thread/c9c60996-7a7d-465d-9608-af5edbd77cb4/"&gt;http://social.msdn.microsoft.com/Forums/en-US/vssmartdevicesnative/thread/c9c60996-7a7d-465d-9608-af5edbd77cb4/&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Thanks,&lt;/p&gt;
&lt;p&gt;Mohan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9918736" width="1" height="1"&gt;</description></item><item><title>re: Windows Mobile 6.5 Web Browser Control: Enabling Gesture support</title><link>http://blogs.msdn.com/b/mikefrancis/archive/2009/07/21/windows-mobile-6-5-web-browser-control-enabling-gesture-support.aspx#9918160</link><pubDate>Thu, 05 Nov 2009 19:11:30 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9918160</guid><dc:creator>M Francis</dc:creator><description>&lt;p&gt;Hi Mohan,&lt;/p&gt;
&lt;p&gt;I have not tested this, but this should work. See the article here &lt;a rel="nofollow" target="_new" href="http://bit.ly/Z5k7q"&gt;http://bit.ly/Z5k7q&lt;/a&gt; on enabling selection support. When selection mode is off, gesture mode will be on. You need access to the IBrowser3 interface, you can QI from the dispatch interface to get it.&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9918160" width="1" height="1"&gt;</description></item><item><title>re: Windows Mobile 6.5 Web Browser Control: Enabling Gesture support</title><link>http://blogs.msdn.com/b/mikefrancis/archive/2009/07/21/windows-mobile-6-5-web-browser-control-enabling-gesture-support.aspx#9917599</link><pubDate>Wed, 04 Nov 2009 22:37:34 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9917599</guid><dc:creator>Mohan</dc:creator><description>&lt;p&gt;Is there a way to enable Gesture Scroll on MiniPIE sample?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9917599" width="1" height="1"&gt;</description></item><item><title>re: Windows Mobile 6.5 Web Browser Control: Enabling Gesture support</title><link>http://blogs.msdn.com/b/mikefrancis/archive/2009/07/21/windows-mobile-6-5-web-browser-control-enabling-gesture-support.aspx#9901857</link><pubDate>Thu, 01 Oct 2009 17:38:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9901857</guid><dc:creator>M Francis</dc:creator><description>&lt;p&gt;There is no way to get to the dispatch interface using the .Net Compact Framework so you can't use this method to disable / enable selection. &lt;/p&gt;
&lt;p&gt;Regarding using .Net CF 3.5 and the Web Browser control, there is a fix now available for this. See here for more information: KB Article: &lt;a rel="nofollow" target="_new" href="http://support.microsoft.com/kb/975281"&gt;http://support.microsoft.com/kb/975281&lt;/a&gt; &lt;/p&gt;
&lt;p&gt; &lt;a rel="nofollow" target="_new" href="http://blogs.msdn.com/raffael/archive/2009/09/29/microsoft-released-a-hotfix-for-netcf-v3-5-on-windows-mobile-6-1-4-onwards-to-address-basic-functionalities-of-webbrowser-control.aspx"&gt;http://blogs.msdn.com/raffael/archive/2009/09/29/microsoft-released-a-hotfix-for-netcf-v3-5-on-windows-mobile-6-1-4-onwards-to-address-basic-functionalities-of-webbrowser-control.aspx&lt;/a&gt;&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://blogs.msdn.com/aggbug.aspx?PostID=9901857" width="1" height="1"&gt;</description></item></channel></rss>