.NET BasicsThis section contains articles relating to various aspects of programming in .NET.
Using Predicate Delegates and Lambda Expressions in C# - 5/4/2010 How to cut down the amount of code used to accomplish a task using delegates, Predicates, Anonymous Methods and Lambdas in C#. more...
Parsing XML With ADO.NET DataSet ReadXML - 4/24/2010 Multiple ways to parse XML, and DataSet ReadXML is easier than using the XML Document Object. more...
Use Application Wrapper Class To Access Web.Config Values - 4/16/2010 Use an Application Wrapper Class to place accessing of all configuration parameters in one place that the whole web application can reference so that you always know where to go to get configuration settings. more...
Use ViewState Properties Instead of Referencing ViewState Directly - 4/16/2010 Have you ever misspelled a ViewState Variable Name? If you have, you probably found out only after trying to debug to find why your Web App was not running. Using ViewState properties gives intellisence and removes the chance of misspelling the name of the ViewState variable name. more...
Use HTTPRequest To Create a Web Browser Business Object - 4/16/2010 Create a Web Browser Business Object to return information about the Web Browser being used to accept your Web Site. more...
Log Browser Info For Trouble Shooting Web Application Errors - 4/16/2010 Log Browser Info For Trouble Shooting Web Application Errors. Use HTTPContext.Current Request Object to get Browser Information. more...
Pass delegate as Anonymous Method in C# To Sort List of Objects - 3/13/2010 How can I sort a List of generic objects? Use a Delegate and the default Sort method of the List Object. more...
Using a Scrollable Div To Show Multiline Data in ASP.NET - 3/12/2010 How do I get a Div to Scroll? I need to show a page of read only data and want the page to look clean, not using ReadOnly TextBox Controls. more...
Creating and Parsing Excel Compatible CSV Files - 2/10/2010 How do I create and parse a true Excel Compatible CSV file? How does Excel treat CSV files? more...
Highlighting Search Text Results in ASP.NET Search Page - 2/4/2010 How do I highlight search text results in ASP.NET search page? more...
plus 178 more...
ListView Drag & Drop With Auto Scrolling in .NET (Upgraded) - 1/21/2008 Need to have your ListView scroll while using Drag and Drop? This article shows the code. It's not complex, but the documentation is hard to locate in .NET. more...
Print Contents of Grid or ListView - 9/16/2006 I am constantly faced with the requirement to print the contents or selected columns of a DataGrid or ListView. This article presents a description and all of the code for a demo project to accomplish this. more...
Updater Application Block - Writing a Wrapper DLL - 1/30/2005 How do I write a wrapper DLL so that I can use it over and over without duplicating all of the self-updating code and use it in both VB.NET and C# Applications? In this article, I will show your the code (C#) for a DLL that wraps the Upadater Application Block. more...
.NET Printing is Different, but much more Powerful and Flexible than in VB6 - 3/1/2004 Why Migrate to .NET? Printing is completely different, but much more powerful and flexible than VB6. more...
TextToStringBuilder - 1/27/2004 Let this FREE tool build code for a StringBuilder based on your text input. Great for long message strings or SQL queries. Generates code in VB.NET or C#.NET. more...
Use XML Files to Replace The Registry for GetSetting And SaveSetting VB Functions - 1/24/2004 If your application has to save settings, you should not count on being able to write to the system Registry. Why not use an XML file to save your settings? more...
Dealing with Colors in VB.NET - 1/12/2004 The System.Drawing.Color enumeration in .NET provides a whole host of colors and is very easy to use. For instance, if I wanted to change the background color of a form, I could use the following: more...
RichTextExplorer - 12/13/2003 Download RichTextExplorer today and simultaneously edit the RTF and Text of a document. Executable and full source code are available. more...
|