<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://www.community-credit.com/cs/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>Search results matching tag 'VB.NET'</title><link>http://www.community-credit.com/cs/search/SearchResults.aspx?o=DateDescending&amp;tag=VB.NET&amp;orTags=0</link><description>Search results matching tag 'VB.NET'</description><dc:language>en-US</dc:language><generator>CommunityServer 2007.1 (Build: 20917.1142)</generator><item><title>Anyone know of good resources on custom ribbons?</title><link>http://www.community-credit.com/cs/forums/p/2372/5588.aspx#5588</link><pubDate>Tue, 04 Nov 2008 15:23:41 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5588</guid><dc:creator>svickn</dc:creator><description>&lt;p&gt;Hey guys,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m looking to make a custom ribbon for a code contest and I&amp;#39;m having trouble locating good information about custom ribbons. Any resources you guys can recommend? Just looking to get started on a ribbon for Word really.&lt;/p&gt;</description></item><item><title>The new features of VB .NET for VS2010</title><link>http://www.community-credit.com/cs/forums/p/2369/5572.aspx#5572</link><pubDate>Mon, 03 Nov 2008 17:08:52 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5572</guid><dc:creator>svickn</dc:creator><description>&lt;p&gt;I found this article in my google reader today:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://blogs.msdn.com/vbteam/archive/2008/11/02/vb-2010-unveiled-at-pdc-2008-lisa-feigenbaum.aspx"&gt;http://blogs.msdn.com/vbteam/archive/2008/11/02/vb-2010-unveiled-at-pdc-2008-lisa-feigenbaum.aspx&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;it goes over some of the new features in VB for VS2010. Personally, I&amp;#39;m excited about the continuation of making VB a great laid back but powerful development environment. What do you guys think about the changes?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;From the article:&lt;/strong&gt;&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Collection Initializers&lt;/strong&gt;. Initialize collections in fewer lines of code! Use the&amp;nbsp;&amp;quot;From&amp;quot; keyword followed by a list, rather than successive&amp;nbsp;calls to the Add method. 
&lt;ul&gt;
&lt;li&gt;Dim y&amp;nbsp;As New List(Of String) From {&amp;quot;hello&amp;quot;,&amp;nbsp;&amp;quot;world&amp;quot;}&amp;nbsp; 
&lt;li&gt;Dim x As New Dictionary(Of String, Integer) From {{&amp;quot;hello&amp;quot;, 1}, {&amp;quot;world&amp;quot;, 2}}&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;li&gt;&lt;strong&gt;Array literals&lt;/strong&gt;. Express arrays more concisely. Whereas before you used to have to write New Integer() {1,2,3}, now you can&amp;nbsp;just write {1,2,3}. Leave it to the compiler to&amp;nbsp;infer the type of the items in the array! This can be very convenient wherever you use arrays. 
&lt;ul&gt;
&lt;li&gt;2D array: {{1,0},{0,1}} 
&lt;li&gt;Jagged array: {({1,2,3,4}),({1,2})}&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;li&gt;&lt;strong&gt;Statement lambdas&lt;/strong&gt;. Visual Basic 2008 enabled lambda expressions. Now you can write multi-line lambda subs or functions as well! 
&lt;ul&gt;
&lt;li&gt;Define&amp;nbsp;a Sub or Function anywhere a delegate is expected.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;li&gt;&lt;strong&gt;Auto-implemented properties&lt;/strong&gt;. Eliminate&amp;nbsp;8 out of&amp;nbsp;9 of the lines you write for boiler-plate VB properties today! 
&lt;ul&gt;
&lt;li&gt;Expanded property syntax:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Private m_Id As Integer&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Public Property Id() As Integer&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Get&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Return m_Id&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Get&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set(ByVal value As Integer)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; m_Id = value&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Set&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End Property 
&lt;li&gt;Auto-property syntax, new in VB 2010:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Public Property Id() As Integer 
&lt;li&gt;Auto-property syntax, with an initializer:&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Public Property Id() As Integer = 100&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;li&gt;&lt;strong&gt;Removal of the line continuation character&lt;/strong&gt;. Underscores are no longer needed in the most common line continuation scenarios. Can you believe it?!?! 
&lt;ul&gt;
&lt;li&gt;Attributes, argument lists, parameter lists, queries, and binary operators are some of the most common scenarios for an underscore. In VB 2010, you can now write these lines underscore-free! 
&lt;li&gt;What&amp;nbsp;are we to do&amp;nbsp;with all those unused underscores? Check out &lt;a href="http://www.unemployedunderscores.com/"&gt;http://www.unemployedunderscores.com&lt;/a&gt; &lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;li&gt;&lt;strong&gt;Generic co- and contra- variance&lt;/strong&gt;. Code that used to generate errors will now work error-free! See Lucian Wischik&amp;#39;s blog posts on this new feature, which has been enabled by CLR 4.0. 
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://blogs.msdn.com/vbteam/archive/2008/08/07/co-and-contra-variance-lucian-wischik.aspx"&gt;http://blogs.msdn.com/vbteam/archive/2008/08/07/co-and-contra-variance-lucian-wischik.aspx&lt;/a&gt; 
&lt;li&gt;&lt;a href="http://blogs.msdn.com/lucian/archive/2008/10/02/co-and-contra-variance-how-do-i-convert-a-list-of-apple-into-a-list-of-fruit.aspx"&gt;http://blogs.msdn.com/lucian/archive/2008/10/02/co-and-contra-variance-how-do-i-convert-a-list-of-apple-into-a-list-of-fruit.aspx&lt;/a&gt;&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;li&gt;&lt;strong&gt;No PIA&lt;/strong&gt;. Deploy your Office applications without the bulky primary interop assemblies! VB 2010 will embed the Office types your application depends on, right into the app itself. No more need to deploy large PIAs.&lt;br /&gt;
&lt;li&gt;&lt;strong&gt;Interop with dynamic languages&lt;/strong&gt;. VB 2010 offers improved support to interoperate with dynamic languages. Dynamic and static languages each have their own benefits, libraries, and particular scenarios for which they are better suited. With VB 2010, you no longer need to choose just one! You can use dynamic languages directly from VB.Net as needed.&lt;/li&gt;&lt;/ul&gt;</description></item><item><title>CLR data type ,hierarchyid </title><link>http://www.community-credit.com/cs/forums/p/2212/5223.aspx#5223</link><pubDate>Sat, 12 Jul 2008 19:28:31 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5223</guid><dc:creator>joggee</dc:creator><description>&lt;p&gt;The heirarchyid is a system data type available in SQL Server 2008 to represent hierarchies. It is based on a CLR data type, but is always available, whether the CLR is enabled or not...... &lt;a href="http://blog.joggee.com/?p=117"&gt;http://blog.joggee.com/?p=117&lt;/a&gt;&lt;/p&gt;
&lt;div class="clearer"&gt;&amp;nbsp;&lt;/div&gt;</description></item><item><title>Tip of the day</title><link>http://www.community-credit.com/cs/forums/p/2211/5222.aspx#5222</link><pubDate>Sat, 12 Jul 2008 19:16:38 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5222</guid><dc:creator>joggee</dc:creator><description>&lt;p&gt;In SQL Server 2008, which index hint will ensure that in index seek operation is used?......... &lt;a href="http://blog.joggee.com/?p=116"&gt;http://blog.joggee.com/?p=116&lt;/a&gt;&lt;/p&gt;
&lt;div class="clearer"&gt;&amp;nbsp;&lt;/div&gt;</description></item><item><title>Avoiding five Most Common SEO Mistakes </title><link>http://www.community-credit.com/cs/forums/p/2210/5221.aspx#5221</link><pubDate>Sat, 12 Jul 2008 19:04:35 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5221</guid><dc:creator>joggee</dc:creator><description>&lt;p&gt;I know this is not a good impact to copy and paste in your blog. But this was a wonderful article and I just copied and paste here to share with my all fellows/reader. My motive is to share the things..... &lt;br /&gt;&lt;a href="http://blog.joggee.com/?p=115"&gt;http://blog.joggee.com/?p=115&lt;/a&gt;&lt;/p&gt;&lt;a href="http://blog.joggee.com/?p=115"&gt;&lt;/a&gt;</description></item><item><title>Tip of the day </title><link>http://www.community-credit.com/cs/forums/p/2209/5220.aspx#5220</link><pubDate>Sat, 12 Jul 2008 19:00:05 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5220</guid><dc:creator>joggee</dc:creator><description>&lt;h2 style="MARGIN-TOP:2px;"&gt;&amp;nbsp;&lt;/h2&gt;
&lt;p&gt;Identify Duplicate Values in an Excel Table&lt;br /&gt;In Microsoft Office Excel 2007, you can easily highlight duplicate values with conditional formatting.... &lt;a href="http://blog.joggee.com/?p=114"&gt;http://blog.joggee.com/?p=114&lt;/a&gt;&lt;/p&gt;
&lt;div class="clearer"&gt;&amp;nbsp;&lt;/div&gt;</description></item><item><title>Tip of the day ,Find the Correct Format for Excel Formulas</title><link>http://www.community-credit.com/cs/forums/p/2208/5219.aspx#5219</link><pubDate>Sat, 12 Jul 2008 18:51:04 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5219</guid><dc:creator>joggee</dc:creator><description>&lt;h2 style="MARGIN-TOP:2px;"&gt;&amp;nbsp;&lt;/h2&gt;
&lt;p&gt;Find the Correct Format for Excel Formulas&lt;br /&gt;You can use Microsoft IntelliSense technology in Microsoft Office Excel 2007 to create formulas. If you want to type a formula in Excel 2007....... &lt;a href="http://blog.joggee.com/?p=113"&gt;http://blog.joggee.com/?p=113&lt;/a&gt;&lt;/p&gt;</description></item><item><title>Fulltext Searching,Fulltext Indexing, Installing Microsoft Search Service </title><link>http://www.community-credit.com/cs/forums/p/2207/5218.aspx#5218</link><pubDate>Sat, 12 Jul 2008 18:46:03 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5218</guid><dc:creator>joggee</dc:creator><description>&lt;p&gt;I received some emails from several groups, people were asking about the fulltext search, so I decided to write about fulltext indexing. I had consolidated a lot of information in one article and these includes Installation of fulltext,MSSearch Services and Noisy words which should be eliminated before searching....... &lt;a href="http://blog.joggee.com/?p=112"&gt;http://blog.joggee.com/?p=112&lt;/a&gt;&lt;/p&gt;</description></item><item><title>How to stop debugger in asp.net? </title><link>http://www.community-credit.com/cs/forums/p/2206/5217.aspx#5217</link><pubDate>Sat, 12 Jul 2008 18:36:20 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5217</guid><dc:creator>joggee</dc:creator><description>&lt;p&gt;&lt;br /&gt;You can stop debugger in asp.net using below code.&lt;/p&gt;
&lt;p&gt;(VB.Net)........ &lt;a href="http://blog.joggee.com/?p=111"&gt;http://blog.joggee.com/?p=111&lt;/a&gt;&lt;/p&gt;
&lt;div class="clearer"&gt;&amp;nbsp;&lt;/div&gt;</description></item><item><title>What is XML-RPC </title><link>http://www.community-credit.com/cs/forums/p/2205/5216.aspx#5216</link><pubDate>Sat, 12 Jul 2008 18:30:45 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5216</guid><dc:creator>joggee</dc:creator><description>&lt;p&gt;It&amp;#39;s a spec and a set of implementations that allow software running on disparate operating systems, running in different environments to make procedure calls over the Internet...... &lt;a href="http://blog.joggee.com/?p=110"&gt;http://blog.joggee.com/?p=110&lt;/a&gt; &amp;nbsp;&lt;/p&gt;
&lt;div class="clearer"&gt;&amp;nbsp;&lt;/div&gt;</description></item></channel></rss>