https://www.developerfusion.com/t/vb.net/code/ VB.NET Sample code from Developer Fusion 2008-08-06T09:35:00.00Z 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/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/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/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/5445/sql-data-provider-vbnet-class/ SQL Data Provider VB.NET Class 2006-02-25T08:59:00.00Z This class includes some useful methods for working with Misrosoft SQL Server in .NET simply and quickly. http://www.developerfusion.com/code/5430/convert-decimal-integer-values-to-binary-string-in-vb6/ Convert Decimal Integer Values to Binary String in VB6 2006-02-22T13:52:00.00Z A small function to convert decimal integer values to a binary string. The number of bits can be optionally specified but this will be increased if insufficient. Alex Etchells http://www.developerfusion.com/code/5246/vbnet-stylise-your-forms-like-you-would-with-css-on-a-webpage/ VB.NET Stylise Your Forms like you would with CSS on a webpage 2006-01-19T06:32:00.00Z How to Programatically change properties of all the controls on your form. phill http://www.developerfusion.com/code/5232/printing-with-formatting-in-vbnet/ Printing with formatting in VB.NET 2006-01-17T21:27:00.00Z This code demonstrates how to print formatted text using VB.NET, with a a printing class which allows text to be formatted at the character level. Jereme Guenther http://www.developerfusion.com/code/5159/ip2location-geolocation-net-component-in-vbnet/ IP2Location Geolocation .NET Component in VB.NET 2006-01-06T06:00:00.00Z IP2Location .NET component that translates IP address to country, city, region, latitude, longitude, ZIP code, ISP and domain name. Developers use this component for projects related to: 1. Display native language and currency; 2. Redirect based on country; 3. Digital rights management; 4. Prevent password sharing and abuse of service; 5. Reduce credit card fraud; 6. Web log stats and analysis; IP2Location Inc http://www.developerfusion.com/code/5052/priority-queue-net/ Priority Queue .NET 2005-12-16T10:45:00.00Z Priority queue is collection like stack or queue. Objects are pushed into priority front in any order, and a priority is assigned to each object. They can be then popped from priority front ordered by priority. It is able to specify if objects with lower priority are popped first or objects with greater priority are popped first. Rasto Novotny http://www.developerfusion.com/code/4712/generate-an-image-of-a-web-page/ Generate an Image of a Web Page 2005-07-22T15:50:00.00Z Demonstrates how to fetch images and thumbnails of web pages using a hidden web browser control. Alan Dean http://www.developerfusion.com/code/4693/using-the-credential-management-api/ Using the Credential Management API 2005-04-28T16:39:00.00Z Following secure development best practice, an application should obtain and store user credentials securely. Microsoft has provided a means to accomplish this on the desktop: the unmanaged Credential Management API, which exposes the capability to provide a standard login experience for the user which is also secure. This code demonstrates how to create a generic dialog implementation using this API. Alan Dean http://www.developerfusion.com/code/4690/parse-a-uk-date-string/ Parse a UK Date String 2005-04-15T12:11:00.00Z Ever wondered why DateTime.Parse doesn't recognise non-US date format? Here's how to get it to! James Crowley http://www.developerfusion.com/code/4672/spoofing-the-referrer-using-httpwebrequest/ Spoofing the Referrer using HttpWebRequest 2005-02-20T10:54:00.00Z Here's a simple way to spoof the referrer to a web page during a web request. Dave Wanta http://www.developerfusion.com/code/4671/calculate-age/ Calculate Age 2005-02-20T10:33:00.00Z How to calculate someone's age from their birth date. James Crowley http://www.developerfusion.com/code/4668/double-buffering-in-net/ Double buffering in .NET 2005-02-11T13:59:00.00Z Ever wondered how to double buffer with a Graphics object so your GDI+ based game/control doesn't flicker annoyingly? Here's how! Simon Soanes http://www.developerfusion.com/code/4662/execute-a-process-and-fetch-its-output/ Execute a Process and Fetch its Output 2005-01-30T14:15:00.00Z Demonstrates how to redirect the output of a shell program (such as a batch file) so you can fetch the text it returns. James Crowley