.NET Sample code from Developer Fusion https://www.developerfusion.com/t/.net/code/ .NET Sample code from Developer Fusion http://www.rssboard.org/rss-specification en-GB Mon, 11 Jun 2012 13:09:00 GMT How to disable uppercase/capitals menus in Visual Studio 2012 Simple registry fix to turn off the upper case menu bar in Visual Studio 2012 http://www.developerfusion.com/code/143962/how-to-disable-uppercasecapitals-menus-in-visual-studio-2012/ http://www.developerfusion.com/code/143962/how-to-disable-uppercasecapitals-menus-in-visual-studio-2012/ Mon, 11 Jun 2012 13:09:00 GMT James Crowley Binding Multiple Fields to ASP.NET ListControl classes Out of the box, the ASP.NET list controls (CheckBoxList, RadioButtonList, DropDownList) only support data binding on a single field. Learn how to work around this to bind to as many fields as you need. http://www.developerfusion.com/code/9723/binding-multiple-fields-to-aspnet-listcontrol-classes/ http://www.developerfusion.com/code/9723/binding-multiple-fields-to-aspnet-listcontrol-classes/ Tue, 10 Feb 2009 11:24:00 GMT Neil Dodson Deep clone an object in .NET A simple code snippet that deep-copies an object by serializing and de-serializing using the BinaryFormatter http://www.developerfusion.com/code/8063/deep-clone-an-object-in-net/ http://www.developerfusion.com/code/8063/deep-clone-an-object-in-net/ Thu, 28 Aug 2008 11:22:00 GMT James Crowley Making a .NET app run on Vista with Administrator priviledges If you're targeting Windows Vista and your application requires administrator priviledges (such as accessing the program files directory), then it will fail unless you include a manifest so Windows knows. Here's how. http://www.developerfusion.com/code/7987/making-a-net-app-run-on-vista-with-administrator-priviledges/ http://www.developerfusion.com/code/7987/making-a-net-app-run-on-vista-with-administrator-priviledges/ Wed, 06 Aug 2008 09:35:00 GMT James Crowley Generate PDFs using C# and the free iTextSharp library Learn how to use the free iTextSharp library to load a PDF form, populate some dynamic fields, and then save out a flat PDF file. http://www.developerfusion.com/code/6623/dynamically-generating-pdfs-in-net/ http://www.developerfusion.com/code/6623/dynamically-generating-pdfs-in-net/ Sun, 15 Apr 2007 20:36:00 GMT James Crowley Debugging client JavaScript in VS 2005 Short guide how to debug client JavaScript in VS 2005. http://www.developerfusion.com/code/5918/debugging-client-javascript-in-vs-2005/ http://www.developerfusion.com/code/5918/debugging-client-javascript-in-vs-2005/ Wed, 19 Jul 2006 08:53:00 GMT Jimmy Skowronski Interacting with TinyPic from C# The following tutorial will demonstrate how to interact with http://tinypic.com, an image mirroring service, directly from a C# application using the WebRobot component. http://www.developerfusion.com/code/5717/interacting-with-tinypic-from-c/ http://www.developerfusion.com/code/5717/interacting-with-tinypic-from-c/ Sat, 20 May 2006 02:00:00 GMT Fernando Sanchez Create PDF Files on fly in C# This sample code shows how to use the iText library to generate PDF files on the fly. The iText classes are very useful for people who need to generate read-only, platform independent documents containing text, lists, tables and images. http://www.developerfusion.com/code/5682/create-pdf-files-on-fly-in-c/ http://www.developerfusion.com/code/5682/create-pdf-files-on-fly-in-c/ Thu, 11 May 2006 07:59:00 GMT Salman Zafar Start a Process as a Different User This tutorial will help you learn how to start a process as another user e.g. the Administrator account. http://www.developerfusion.com/code/5679/start-a-process-as-a-different-user/ http://www.developerfusion.com/code/5679/start-a-process-as-a-different-user/ Tue, 09 May 2006 22:12:00 GMT Peter Rekdal Sunde How to empty a recycle bin Here is a little snippet that allows you to clean your recycle bin without any confirmation from the user, no progress ui and the sound is removed. http://www.developerfusion.com/code/5673/how-to-empty-a-recycle-bin/ http://www.developerfusion.com/code/5673/how-to-empty-a-recycle-bin/ Sat, 06 May 2006 14:57:00 GMT Peter Rekdal Sunde VB Express Color Object to Hex String This function takes one color type variable and returns the hex code in a string. http://www.developerfusion.com/code/5664/vb-express-color-object-to-hex-string/ http://www.developerfusion.com/code/5664/vb-express-color-object-to-hex-string/ Fri, 05 May 2006 05:42:00 GMT Chris Buske Storing Documents with MS Access - SharePoint lists or Access BLOB fields This is an Access 2003 project file that demonstrates how to do a few cool things with documents. You can grab the project file (zipped) from here: http://www.guardianbob.com/support/public_files/DocumentStorageTest.zip This project will show you how to store and retrieve documents from both an Access table with a BLOB field as well as a SharePoint list (via linked tables and the list web service). http://www.developerfusion.com/code/5658/storing-documents-with-ms-access-sharepoint-lists-or-access-blob-fields/ http://www.developerfusion.com/code/5658/storing-documents-with-ms-access-sharepoint-lists-or-access-blob-fields/ Wed, 03 May 2006 20:01:00 GMT Sean Brady Developing your first Visual WebGui application An introduction to Visual WebGui through a sample application. http://www.developerfusion.com/code/5639/developing-your-first-visual-webgui-application/ http://www.developerfusion.com/code/5639/developing-your-first-visual-webgui-application/ Sat, 29 Apr 2006 15:57:00 GMT Guy Peled Visual WebGui a unique approach to AJAX development Visual WebGui is not just another AJAX framework but rather a different approach to web application development, specially designed to simplify building highly complex applications like Outlook Web Access (OWA). Visual WebGui makes it possible for developers to create applications that were previously developed only by the "big guys". http://www.developerfusion.com/code/5638/visual-webgui-a-unique-approach-to-ajax-development/ http://www.developerfusion.com/code/5638/visual-webgui-a-unique-approach-to-ajax-development/ Sat, 29 Apr 2006 15:45:00 GMT Guy Peled Health Monitoring in ASP.NET 2 This is a code sample for using health monitoring... http://www.developerfusion.com/code/5543/health-monitoring-in-aspnet-2/ http://www.developerfusion.com/code/5543/health-monitoring-in-aspnet-2/ Sat, 01 Apr 2006 17:47:00 GMT Sorting and Searching Using C# Lists The support for lists in C# 2.0 makes sorting and searching very easy. This code snippet demonstrates how to create a list of Person objects (with name and age attributes), sort by name, sort by age and search based on age. http://www.developerfusion.com/code/5513/sorting-and-searching-using-c-lists/ http://www.developerfusion.com/code/5513/sorting-and-searching-using-c-lists/ Thu, 23 Mar 2006 15:46:00 GMT Craig Murphy GDI+ Image Encoder and Decoder Info Sample code to display useful information about the built in GDI+ Image Encoders and Decoders. Easily used to display information about any Encoder and Decoder as well. http://www.developerfusion.com/code/5505/gdi-image-encoder-and-decoder-info/ http://www.developerfusion.com/code/5505/gdi-image-encoder-and-decoder-info/ Mon, 20 Mar 2006 09:49:00 GMT Mitch ★ Date And Time Validation Functions This function is used for VB.Net developers. It is useful for Date validate when the date format is "dd/MM/yyyy" or "dd/MMM/yyyy". Time validation is also useful for Validating the given time in the format of "HH:mm:ss" http://www.developerfusion.com/code/5480/date-and-time-validation-functions/ http://www.developerfusion.com/code/5480/date-and-time-validation-functions/ Wed, 08 Mar 2006 14:23:00 GMT Hari K The "Using" Statement in C# The using statement in the c# language allows us to define an scope for an object lifetime. This statement obtains the resource specified, executes the statements and finally calls the Dispose() method of the object to clean it up. http://www.developerfusion.com/code/5457/the-using-statement-in-c/ http://www.developerfusion.com/code/5457/the-using-statement-in-c/ Wed, 01 Mar 2006 15:18:00 GMT Xavier Larrea Sending Authenticated Emails in .NET 2.0 Learn what's changed with .NET 2.0 and how to send out emails using an SMTP server that requires authentication. http://www.developerfusion.com/code/5456/sending-authenticated-emails-in-net-20/ http://www.developerfusion.com/code/5456/sending-authenticated-emails-in-net-20/ Wed, 01 Mar 2006 15:13:00 GMT Xavier Larrea