https://www.developerfusion.com/code/ 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/5802/the-ajax-top-5-security-tips/ The AJAX "Top 5" security tips 2006-06-14T08:04:00.00Z There is no doubt that AJAX and AJAX-style technologies are the way forward for web design. Developers can create true "applications" on the web like never before - however care needs to be taken with AJAX, in order to keep web sites secure. Moe Tarhini http://www.developerfusion.com/code/5734/calculate-the-difference-between-two-dates-ignoring-weekends/ Calculate the difference between two dates, ignoring weekends 2006-05-26T21:21:00.00Z This code allows calculating with dates as if there were no weekends. To achieve this, days are numbered from Monday, 29 December 1969 without any intervening weekends (that is, five days per week). One purpose is to calculate the number of working days in a month, ignoring further public and bank holidays. joki 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/5629/validate-phone-or-fax-number/ Validate Phone or Fax Number 2006-04-26T14:14:00.00Z This is a small javascript function that can be used to validate a phone or fax number. Pradip Patel http://www.developerfusion.com/code/5602/mouse-coordinates/ Mouse Coordinates 2006-04-15T15:59:00.00Z This application is simple but sometimes useful, it gives you the cursor coordinates when you move it across the screen. You can use this to create a list of random numbers or maybe to trigger an event when the cursor moves over already determinded X and Y. XNeo http://www.developerfusion.com/code/5580/opening-a-net-page-in-a-new-window/ opening a .net page in a new window 2006-04-10T11:48:00.00Z This script shows how to open a new page inside a new window rather than the existing window. You can also remove all the buttons and toolbars that exist in the standard browser window so that the entire new window is filled with only your content. You could either open an existing page or you could create dynamic content inside the new window. chezhian 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...