<?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>VB.NET</title><link>http://www.community-credit.com/cs/forums/5.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2007.1 (Build: 20917.1142)</generator><item><title>Anything free like StyleCop for VB?</title><link>http://www.community-credit.com/cs/forums/thread/5676.aspx</link><pubDate>Tue, 02 Dec 2008 19:07:14 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5676</guid><dc:creator>svickn</dc:creator><slash:comments>2</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/5676.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=5676</wfw:commentRss><description>&lt;p&gt;I have been trying a suite of new tools to help with development, and have enjoyed FxCop. However, StyleCop doesn&amp;#39;t work with VB as far as I know. Is there anything similar that is free for use for VB?&lt;/p&gt;</description></item><item><title>The new features of VB .NET for VS2010</title><link>http://www.community-credit.com/cs/forums/thread/5572.aspx</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><slash:comments>3</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/5572.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=5572</wfw:commentRss><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>Unit testing in VB .NET, any good recommendations?</title><link>http://www.community-credit.com/cs/forums/thread/5624.aspx</link><pubDate>Mon, 10 Nov 2008 16:59:31 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5624</guid><dc:creator>svickn</dc:creator><slash:comments>5</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/5624.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=5624</wfw:commentRss><description>&lt;p&gt;Hey again,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;I&amp;#39;m working to bring my company out of the stoneage, and one of the tasks on my list is to implement more testing. I&amp;#39;m not going test driven, but I would like to implement unit testing for critical functions. The only tool I&amp;#39;ve seen talked about on a high degree is NUnit, and so far that&amp;#39;s what I plan on checking out.&lt;/p&gt;
&lt;p&gt;Anyone using something else for unit testing? Assuming a VS 2005-2008 not TS development environment working with VB .NET&lt;/p&gt;</description></item><item><title>Anyone know of good resources on custom ribbons?</title><link>http://www.community-credit.com/cs/forums/thread/5588.aspx</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><slash:comments>3</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/5588.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=5588</wfw:commentRss><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>Good Resource Download on VB.NET</title><link>http://www.community-credit.com/cs/forums/thread/5470.aspx</link><pubDate>Thu, 16 Oct 2008 02:21:11 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5470</guid><dc:creator>deepak kumarvasudevan</dc:creator><slash:comments>4</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/5470.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=5470</wfw:commentRss><description>&lt;p&gt;Just came across this nice resource download on VB.NET and thought I would share it with other interesting VB.NET developers too:&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;
      &lt;a&gt;&lt;font color="blue" size="-1"&gt;http://www.apress.com/resource/freeebook/9781893115996&lt;/font&gt;&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;It is a 4 Mb downloadable book from the website.&amp;nbsp; &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Comprehensive VB.NET Tutorial</title><link>http://www.community-credit.com/cs/forums/thread/5471.aspx</link><pubDate>Thu, 16 Oct 2008 02:23:28 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5471</guid><dc:creator>deepak kumarvasudevan</dc:creator><slash:comments>1</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/5471.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=5471</wfw:commentRss><description>&lt;p&gt;Just came across this online tutorial on VB.NET and thought I would share with others so that you can load this URL in your favorites bookmarks manager:&lt;/p&gt;
&lt;p&gt;&lt;a class="" title="VB.Net Tutorial" href="http://www.homeandlearn.co.uk/NET/vbNet.html" target="_blank"&gt;http://www.homeandlearn.co.uk/NET/vbNet.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;It is almost a huge tutorial and hence may be used as a quick lookup on the desired features.&amp;nbsp; &lt;br /&gt;&lt;/p&gt;</description></item><item><title>PosPrinter Receipt : Column Generation</title><link>http://www.community-credit.com/cs/forums/thread/5227.aspx</link><pubDate>Wed, 16 Jul 2008 12:17:59 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:5227</guid><dc:creator>Happyarimaan</dc:creator><slash:comments>1</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/5227.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=5227</wfw:commentRss><description>&lt;p&gt;&lt;span id="KonaBody"&gt;Hi &lt;img src="http://www.community-credit.com/cs/emoticons/emotion-1.gif" alt="Smile" /&gt;&lt;br /&gt;&lt;br /&gt;Iam designing a receipt using Microsoft OPOS and VB.NET2008. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;The receipt is to generated through a thermal/dotmatrix &lt;a class="kLink" id="KonaLink0" style="POSITION:static;" href="http://visualbasic.ittoolbox.com/groups/technical-functional/vb-dotnet-l/posprinter-receipt-2241869#" target="_top"&gt;&lt;font style="FONT-WEIGHT:400;FONT-SIZE:10pt;FONT-FAMILY:Arial;POSITION:static;" color="blue"&gt;&lt;span class="kLink" style="FONT-WEIGHT:400;FONT-SIZE:10pt;BORDER-BOTTOM:blue 1px solid;FONT-FAMILY:Arial;POSITION:relative;BACKGROUND-COLOR:transparent;"&gt;printer&lt;/span&gt;&lt;/font&gt;&lt;/a&gt;. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I have to provide a feature to the user by which he can stipulate the nos. of columns to be printed eg., 5,10,12. &lt;br /&gt;How will I provide column generation function dynamically ? &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;I have previously hardcoded my columns in the program. &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;br /&gt;Also how can the column names(col. header) generated dynamically? I will only provide names eg.(1,&amp;quot;SRL NO.)(2,&amp;quot;NAME&amp;quot;)etc. &lt;br /&gt;&lt;br /&gt;I appreciate any help in this regard. &lt;br /&gt;&lt;/p&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;</description></item><item><title>Visual Basic 2008 Programmer's Reference</title><link>http://www.community-credit.com/cs/forums/thread/4858.aspx</link><pubDate>Mon, 31 Mar 2008 13:14:59 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:4858</guid><dc:creator>LouVega</dc:creator><slash:comments>2</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/4858.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=4858</wfw:commentRss><description>&lt;p&gt;I was lucky enough to win this book at Code Camp this weekend and while I haven&amp;#39;t had time yet to do a full review I&amp;#39;m looking forward to reading through it and seeing what&amp;#39;s going on in VB 2008. Ful details on the book are below:&lt;/p&gt;
&lt;div class="productDetail-title"&gt;Visual Basic 2008 Programmer&amp;#39;s Reference&lt;/div&gt;
&lt;div class="productDetail-biblio"&gt;
&lt;div class="productDetail-authors"&gt;&lt;span class="productDetail-authorsMain"&gt;Rod Stephens&lt;/span&gt; &lt;/div&gt;
&lt;div class="productDetail-productCode"&gt;ISBN: 978-0-470-18262-8&lt;/div&gt;
&lt;div class="productDetail-format"&gt;Paperback&lt;/div&gt;
&lt;div class="productDetail-pageCount"&gt;1248 pages&lt;/div&gt;
&lt;div class="productDetail-dateImprint"&gt;February 2008&lt;/div&gt;
&lt;div class="productDetail-dateImprint"&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class="productDetail-dateImprint"&gt;Once I&amp;#39;ve finished going through it I&amp;#39;ll gladly post a review for those who might be interested!&lt;/div&gt;
&lt;div class="productDetail-dateImprint"&gt;&amp;nbsp;&lt;/div&gt;&lt;/div&gt;</description></item><item><title>Visual Studio 2008 Crashes When Applying Custom Attribute - BUG and Solution</title><link>http://www.community-credit.com/cs/forums/thread/4423.aspx</link><pubDate>Sat, 02 Feb 2008 17:01:09 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:4423</guid><dc:creator>KarlShifflett</dc:creator><slash:comments>5</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/4423.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=4423</wfw:commentRss><description>&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Fellow VB.NET Developers,&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;I have found&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp; a &lt;/SPAN&gt;VB.NET, VS2008 bug that pops up when applying custom attributes to properties.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;I have posted the information here:&lt;SPAN style="mso-spacerun:yes;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;A href="http://karlshifflett.wordpress.com/2008/02/02/visual-studio-2008-crashes-when-applying-custom-attribute-bug-and-solution/"&gt;&lt;U&gt;&lt;FONT face=Calibri size=3&gt;http://karlshifflett.wordpress.com/2008/02/02/visual-studio-2008-crashes-when-applying-custom-attribute-bug-and-solution/&lt;/FONT&gt;&lt;/U&gt;&lt;/A&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;FONT size=3&gt;&lt;FONT face=Calibri&gt;Nice article with code download and also includes a video demonstrating the bug and several solutions I came up with.&lt;o:p&gt;&lt;/o:p&gt;&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&lt;o:p&gt;&lt;FONT face=Calibri size=3&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/o:p&gt;&lt;/P&gt;
&lt;P class=MsoNormal style="MARGIN:0in 0in 0pt;"&gt;&amp;nbsp;&lt;/P&gt;</description></item><item><title>Authoring Visual Studio Debugger Visualizers Using VB.NET</title><link>http://www.community-credit.com/cs/forums/thread/4387.aspx</link><pubDate>Tue, 22 Jan 2008 20:42:11 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:4387</guid><dc:creator>KarlShifflett</dc:creator><slash:comments>0</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/4387.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=4387</wfw:commentRss><description>&lt;P&gt;Fellow VB.NET Developers,&lt;/P&gt;
&lt;P&gt;I have posted a comprehensive article that includes two videos on Authoring Debugger Visualizers.&amp;nbsp; The article also covers how to debug visualizers.&lt;/P&gt;
&lt;P&gt;You can read the post on my blog&amp;nbsp;here: &lt;A href="http://karlshifflett.wordpress.com/2008/01/20/sample-series-authoring-debugger-visualizers/"&gt;http://karlshifflett.wordpress.com/2008/01/20/sample-series-authoring-debugger-visualizers/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or the Code Project article here: &lt;A href="http://www.codeproject.com/KB/vb/AuthoringVisualizers.aspx"&gt;http://www.codeproject.com/KB/vb/AuthoringVisualizers.aspx&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Enjoy developing your own visualizers!&lt;/P&gt;</description></item><item><title>New website/community for folks who love VB.NET</title><link>http://www.community-credit.com/cs/forums/thread/3796.aspx</link><pubDate>Thu, 06 Dec 2007 13:49:25 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:3796</guid><dc:creator>LouVega</dc:creator><slash:comments>5</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/3796.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=3796</wfw:commentRss><description>&lt;P&gt;My buddy Chris Williams has started a new web site/community dedicated to all things VB.NET&lt;/P&gt;
&lt;P&gt;Chris is a VB.NET MVP and has been very involved in growing development communities wherever he goes so check out this new community - especially if you're into XNA as well since there are a number of XNA (VB) tutorials on there as well.&lt;/P&gt;
&lt;P&gt;EDIT: It might help if I actually include the URL to his site: &lt;A href="http://ilovevb.net/"&gt;http://ilovevb.net/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description></item><item><title>great help for .net people</title><link>http://www.community-credit.com/cs/forums/thread/3186.aspx</link><pubDate>Tue, 17 Jul 2007 11:34:20 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:3186</guid><dc:creator>mukeshranjan</dc:creator><slash:comments>3</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/3186.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=3186</wfw:commentRss><description>hello every one ..this is the link where u can have gr8 help for .net ..u can have compelte source code examples with description and also the complete executing tool and softwares in .net,vb,asp etc</description></item><item><title>Accessing all objects on a form</title><link>http://www.community-credit.com/cs/forums/thread/2804.aspx</link><pubDate>Wed, 25 Apr 2007 15:56:46 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:2804</guid><dc:creator>ParasWadehra</dc:creator><slash:comments>2</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/2804.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=2804</wfw:commentRss><description>&lt;P&gt;What is the syntax to access all object on a form.&lt;BR&gt;&lt;BR&gt;I am looking for something like: "for all obj as Object on form1"&lt;BR&gt;&lt;BR&gt;Can somebodyhelp?&lt;/P&gt;</description></item><item><title>A word of warning when upgrading VS2003 projects...</title><link>http://www.community-credit.com/cs/forums/thread/2333.aspx</link><pubDate>Mon, 19 Feb 2007 03:50:26 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:2333</guid><dc:creator>LouVega</dc:creator><slash:comments>0</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/2333.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=2333</wfw:commentRss><description>&lt;P&gt;I just ran into a weird issue upgrading a VS2003 project and posted about it in my &lt;A href="http://geekswithblogs.net/lvega/archive/2007/02/18/106644.aspx"&gt;blog&lt;/A&gt;&amp;nbsp;- check it out if you're upgrading projects and running into problems, hopefully it will save you some headaches!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description></item><item><title>Simple Code Improvement "Contest"</title><link>http://www.community-credit.com/cs/forums/thread/1775.aspx</link><pubDate>Thu, 21 Dec 2006 02:13:03 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:1775</guid><dc:creator>LouVega</dc:creator><slash:comments>19</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/1775.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=1775</wfw:commentRss><description>&lt;P&gt;Here's some code that is purposefully messed up - It dumps out a really large string to the console screen, but it runs painfully slow.&lt;/P&gt;
&lt;P&gt;What can you do to improve the code performance? My best improvement will be posted at a later date and it dumps this string out to the screen almost instantly when you hit F5.&lt;/P&gt;
&lt;P&gt;Oh and since I don't have any prizes like David to give, the only thing you get from this is personal satisfaction! &lt;img src="http://www.community-credit.com/cs/emoticons/emotion-2.gif" alt="Big Smile" /&gt;&lt;/P&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;   1:  &lt;/SPAN&gt;&lt;SPAN class=kwrd&gt;Imports&lt;/SPAN&gt; System.text&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;   2:  &lt;/SPAN&gt;&lt;SPAN class=kwrd&gt;Module&lt;/SPAN&gt; PerfJunkie&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;   3:  &lt;/SPAN&gt;    &lt;SPAN class=kwrd&gt;Private&lt;/SPAN&gt; ReallyBigString &lt;SPAN class=kwrd&gt;As&lt;/SPAN&gt; &lt;SPAN class=kwrd&gt;String&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;   4:  &lt;/SPAN&gt;    &lt;SPAN class=kwrd&gt;Sub&lt;/SPAN&gt; Concatenate(&lt;SPAN class=kwrd&gt;ByVal&lt;/SPAN&gt; Junk &lt;SPAN class=kwrd&gt;As&lt;/SPAN&gt; &lt;SPAN class=kwrd&gt;String&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;   5:  &lt;/SPAN&gt;        ReallyBigString = ReallyBigString &amp;amp; Junk&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;   6:  &lt;/SPAN&gt;    &lt;SPAN class=kwrd&gt;End&lt;/SPAN&gt; &lt;SPAN class=kwrd&gt;Sub&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;   7:  &lt;/SPAN&gt;    &lt;SPAN class=kwrd&gt;Sub&lt;/SPAN&gt; Main()&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;STRIKE&gt;&lt;SPAN class=lnum&gt;   8:  &lt;/SPAN&gt;        &lt;SPAN class=kwrd&gt;Dim&lt;/SPAN&gt; start &lt;SPAN class=kwrd&gt;As&lt;/SPAN&gt; &lt;SPAN class=kwrd&gt;Date&lt;/SPAN&gt; = Now &lt;/STRIKE&gt;&lt;EM&gt;&lt;FONT style="BACKGROUND-COLOR:#ffff00;"&gt;(you can ignore this line for now)&lt;/FONT&gt;&lt;/EM&gt;&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;   9:  &lt;/SPAN&gt;        &lt;SPAN class=kwrd&gt;For&lt;/SPAN&gt; i &lt;SPAN class=kwrd&gt;As&lt;/SPAN&gt; Int16 = 0 &lt;SPAN class=kwrd&gt;To&lt;/SPAN&gt; (Int16.MaxValue - 1)&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;  10:  &lt;/SPAN&gt;            Concatenate(&lt;SPAN class=kwrd&gt;CStr&lt;/SPAN&gt;(i))&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;  11:  &lt;/SPAN&gt;        &lt;SPAN class=kwrd&gt;Next&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;  12:  &lt;/SPAN&gt;        Console.WriteLine(ReallyBigString)&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;  13:  &lt;/SPAN&gt;        Console.ReadLine()&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;  14:  &lt;/SPAN&gt;    &lt;SPAN class=kwrd&gt;End&lt;/SPAN&gt; &lt;SPAN class=kwrd&gt;Sub&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;
&lt;DIV class=csharpcode&gt;&lt;PRE&gt;&lt;SPAN class=lnum&gt;  15:  &lt;/SPAN&gt;&lt;SPAN class=kwrd&gt;End&lt;/SPAN&gt; Module&lt;/PRE&gt;&lt;PRE&gt;&amp;nbsp;&lt;/PRE&gt;&lt;PRE&gt;&lt;STRONG&gt;&lt;FONT style="BACKGROUND-COLOR:#ffff00;" color=#000000&gt;On my machine this code takes 11.265625 seconds&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/PRE&gt;&lt;/DIV&gt;</description></item><item><title>No VB.NET fans out there?</title><link>http://www.community-credit.com/cs/forums/thread/1774.aspx</link><pubDate>Thu, 21 Dec 2006 01:59:05 GMT</pubDate><guid isPermaLink="false">dc2d8ed1-db5f-43a8-9632-42f90caf747d:1774</guid><dc:creator>LouVega</dc:creator><slash:comments>6</slash:comments><comments>http://www.community-credit.com/cs/forums/thread/1774.aspx</comments><wfw:commentRss>http://www.community-credit.com/cs/forums/commentrss.aspx?SectionID=5&amp;PostID=1774</wfw:commentRss><description>Am I the only one? Or are the rest of you in hiding? &lt;img src="http://www.community-credit.com/cs/emoticons/emotion-2.gif" alt="Big Smile" /&gt;</description></item></channel></rss>