https://www.developerfusion.com/t/.net/code/ .NET Sample code from Developer Fusion 2012-06-11T13:09:00.00Z http://www.developerfusion.com/code/143962/how-to-disable-uppercasecapitals-menus-in-visual-studio-2012/ How to disable uppercase/capitals menus in Visual Studio 2012 2012-06-11T13:09:00.00Z Simple registry fix to turn off the upper case menu bar in Visual Studio 2012 James Crowley http://www.developerfusion.com/code/9723/binding-multiple-fields-to-aspnet-listcontrol-classes/ Binding Multiple Fields to ASP.NET ListControl classes 2009-02-10T11:24:00.00Z 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. Neil Dodson http://www.developerfusion.com/code/8063/deep-clone-an-object-in-net/ Deep clone an object in .NET 2008-08-28T11:22:00.00Z A simple code snippet that deep-copies an object by serializing and de-serializing using the BinaryFormatter James Crowley http://www.developerfusion.com/code/7987/making-a-net-app-run-on-vista-with-administrator-priviledges/ Making a .NET app run on Vista with Administrator priviledges 2008-08-06T09:35:00.00Z 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. James Crowley http://www.developerfusion.com/code/6623/dynamically-generating-pdfs-in-net/ Generate PDFs using C# and the free iTextSharp library 2007-04-15T20:36:00.00Z 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. James Crowley http://www.developerfusion.com/code/5918/debugging-client-javascript-in-vs-2005/ Debugging client JavaScript in VS 2005 2006-07-19T08:53:00.00Z Short guide how to debug client JavaScript in VS 2005. Jimmy Skowronski http://www.developerfusion.com/code/5717/interacting-with-tinypic-from-c/ Interacting with TinyPic from C# 2006-05-20T02:00:00.00Z 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. Fernando Sanchez http://www.developerfusion.com/code/5682/create-pdf-files-on-fly-in-c/ Create PDF Files on fly in C# 2006-05-11T07:59:00.00Z 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. Salman Zafar http://www.developerfusion.com/code/5679/start-a-process-as-a-different-user/ Start a Process as a Different User 2006-05-09T22:12:00.00Z This tutorial will help you learn how to start a process as another user e.g. the Administrator account. Peter Rekdal Sunde http://www.developerfusion.com/code/5673/how-to-empty-a-recycle-bin/ How to empty a recycle bin 2006-05-06T14:57:00.00Z 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. Peter Rekdal Sunde http://www.developerfusion.com/code/5664/vb-express-color-object-to-hex-string/ VB Express Color Object to Hex String 2006-05-05T05:42:00.00Z This function takes one color type variable and returns the hex code in a string. Chris Buske http://www.developerfusion.com/code/5658/storing-documents-with-ms-access-sharepoint-lists-or-access-blob-fields/ Storing Documents with MS Access - SharePoint lists or Access BLOB fields 2006-05-03T20:01:00.00Z 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). Sean Brady http://www.developerfusion.com/code/5639/developing-your-first-visual-webgui-application/ Developing your first Visual WebGui application 2006-04-29T15:57:00.00Z An introduction to Visual WebGui through a sample application. Guy Peled http://www.developerfusion.com/code/5638/visual-webgui-a-unique-approach-to-ajax-development/ Visual WebGui a unique approach to AJAX development 2006-04-29T15:45:00.00Z 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". Guy Peled http://www.developerfusion.com/code/5543/health-monitoring-in-aspnet-2/ Health Monitoring in ASP.NET 2 2006-04-01T17:47:00.00Z This is a code sample for using health monitoring... http://www.developerfusion.com/code/5513/sorting-and-searching-using-c-lists/ Sorting and Searching Using C# Lists 2006-03-23T15:46:00.00Z 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. Craig Murphy http://www.developerfusion.com/code/5505/gdi-image-encoder-and-decoder-info/ GDI+ Image Encoder and Decoder Info 2006-03-20T09:49:00.00Z 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. Mitch ★ http://www.developerfusion.com/code/5480/date-and-time-validation-functions/ Date And Time Validation Functions 2006-03-08T14:23:00.00Z 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" Hari K http://www.developerfusion.com/code/5457/the-using-statement-in-c/ The "Using" Statement in C# 2006-03-01T15:18:00.00Z 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. Xavier Larrea http://www.developerfusion.com/code/5456/sending-authenticated-emails-in-net-20/ Sending Authenticated Emails in .NET 2.0 2006-03-01T15:13:00.00Z Learn what's changed with .NET 2.0 and how to send out emails using an SMTP server that requires authentication. Xavier Larrea