We need you!

We're working hard on the next version of Developer Fusion. Let us know what you think we should be up to!

Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

    Articles & Tutorials Articles & Tutorials RSS feed

  • Introducing Visual Studio .NET 2008 - Top 10 Features

    by Mark Smith

    After a long beta period, Visual Studio .NET 2008 is finally on general release. There are a ton of new features and enhancements in this release that make it almost a no-brainer to upgrade - I thought I’d take a moment and list my top ten favorites in no particular order.. Read full article

  • New C# 3.0 Language Features

    by ScottGu

    Learn about some of the new features in C# 3.0 including automatic properties, collection initializers, extension methods, lambda expressions and anonymous types.. Read full article

  • Improving Application Quality Using Test-Driven Development (TDD)

    by CAMURPHY

    What is the one activity or phase that improves the quality of your application? The answer is an easy one: Testing, and plenty of it. Traditionally, testing is a phase somewhere towards the expected end of the project - when the cost of any code or requirement changes is known to be much higher. Craig looks at how TDD can address this by adopting a more agile approach.. Read full article

  • Read and write Open XML files (MS Office 2007)

    by ZeljkoS

    Learn how to read and write Open XML files in the new Microsoft Office 2007, with a particular examination of the Excel file format.. Read full article

  • Interacting with the web using WebRobot v1.0

    by fsanchez

    In this tutorial, we will learn how to use the WebRobot component to interact with web sites, by filling out forms dynamically and uploading files from a simple VB.NET application.. Read full article

  • Bin Packing

    by Nimpo

    An implementation of the most common Bin Packing algorithms. Visually representing the computed data will also be discussed.. Read full article

  • High-Performance .NET Application Development & Architecture

    by DMarko1

    This article demonstrates the art of creating and architecting high-performance and scalable .NET applications, covering all stages, from planning to development and their perspective best practices.. Read full article

  • DataGrid/GridView Paging and Sorting Using A DataReader

    by DMarko1

    This article will demonstrate two ways one could implement the DataReader to bind a DataGrid, that includes caching, paging and persistent bi-directional sorting, all without the use of a DataAdapter/DataSet at all, and includes ASP.NET 2.0 GridView version!. Read full article

  • Delegates in VB.NET

    by jspano

    You use them everyday, but might not know it. In this article, we will take a look at what a delegate is and how it will help you to develop better software. . Read full article

  • Test-Driven Development in .NET

    by pprovost@gmail.com

    An article presenting benefits and techniques for using test-driven development in .NET, specifically examining the NUnit testing framework.. Read full article

  • Multithreading in VB.NET

    by jspano

    Multithreading, a very powerful technique, is essential for modern software development. Software users expect to work with a very responsive program that they don’t have to wait on, which is a very reasonable demand with the processor speeds that are currently available. Enter multithreading. This article shows you how.. Read full article

  • Generate Thumbnail Images from PDF Documents in .NET

    by jonathan_hodgson

    This article presents VB.NET code to create thumbnail images from a directory of Adobe Acrobat PDF documents using the .NET Framework. . Read full article

  • Floating-Point in .NET Part I: Concepts and Format

    by JeffreySax

    The first in a three part series, this article introduces the basic concepts of floating-point arithmetic: number formats, accuracy and precision, and round-off error. It includes an in-depth discussion of the .NET floating-point types.. Read full article

  • VSA Scripting in .NET

    by mrbelles

    Using Visual Studio for Applications to add scripting capabilities to your .NET apps. . Read full article

  • How to Write a GPS Application

    by jperson

    An introduction to writing GPS applications in .NET good enough for use in a commerical environment such as in-car navigation.. Read full article

  • RichTextLabel WinForms Control

    by palom

    Embedding and displaying RTF resources to tweak the UI of an application easily and efficiently. . Read full article

  • Intercepting keys in custom UITypeEditor's

    by palom

    This article and the accompanying source code shows you how to intercept the ENTER and ESC keys in your own UITypeEditor implementation. Intercepting the keys is essential for emulating the behavior of the .NET Framework's built-in, drop-down editors in order to provide your users with a consistent user experience. . Read full article

  • Using .NET to make your Application Scriptable

    by divil

    Shows how to use the built-in compilers in the .NET framework to allow users of your product to write script to control and hook in to the application.. Read full article

  • Winforms Data Binding Lessons Learned

    by RoyOsherove

    I’ve been dabbling with Winforms data binding and the DataGrid control for the past week, and here are some lessons I’ve learned.. Read full article

  • Creating a Generic Site-To-Rss Tool

    by RoyOsherove

    I’ll show how to use regular expressions to parse a Web page’s HTML text into manageable chunks of data. That data will be converted and written as an RSS feed for the whole world to consume. Finally, I’ll show how to create a generic tool that enables you to automatically generate an RSS feed from any website, given a small group of parameters.. Read full article

  • Introduction to Designers

    by divil

    Designers are essential in creating professional controls with polished design time behaviour. This article serves as an introduction to writing your own.. Read full article

  • Writing Plugin-Based Applications

    by divil

    Plugins are a great way to make your application extensible. They are easy to implement with the .NET framework, and this article shows how.. Read full article

  • Windows Form Designer generated code

    by palom

    Taking a closer look at the code generated by the Windows Forms Designer and understanding some of the important implications. . Read full article

  • The Quick & Dirty .NET Guide to C#/VB OOP

    by DMarko1

    Although this article won't be an exhaustive OOP treatise, its objective nevertheless is to present in a quick and dirty manner C#/VB Object-Oriented Programming. Moreover, even though this article may be slightly geared more towards C#, all important VB assessments or similarities are addressed and demonstrated. By the way, keep in mind C# is very case sensitive. Incidentally, don't be put off at the length of this article, a lot of it is simply repeated code examples for both languages.. Read full article

  • The ColorPicker WinForms Control

    by palom

    Developing a simple ColorPicker WinForms control by implementing the IWindowsFormsEditorService interface and leveraging the WinForms design-time infrastructure.. Read full article

  • An Introduction to VB.NET and Database Programming

    by SilverLock

    I am a beginner. I wanted to share some experiences with other beginners. The next few articles that come from my keyboard will be about my experience with teaching myself to develop applications in VB.NET.. Read full article

  • .NET Threading Part I

    by randy

    The first in a two part series, introducing how to create and manipulate threads with the .NET framework, including creating a thread, thread pools, syncronization, race conditions and timers.. Read full article

  • Drag and Drop in Windows Forms - A Primer

    by musician

    Examples of how to implement Drag & Drop in Windows Forms including TextBox, TreeView and Dragging a control around a form.. Read full article

  • XML transformations in .NET - Part I

    by JLogic

    An introduction to using XSL transformations on XML documents, and how to perform these in VB .NET using the XslTransform class.. Read full article

  • Implementing The Google Web Service In VB.NET

    by JayeshJain

    Learn how to implement the new Google Web Service and take advantage of its powerful searching features in your VB.NET program.. Read full article

  • Watching Folder Activity in VB.NET

    by JayeshJain

    In this article we're going to learn how to implement the FileSystemWatcher class using Microsoft Visual Basic .NET . Read full article

  • Creating a Windows Service in VB.NET

    by JayeshJain

    Learn how to do the previously impossible - build a Windows Service with the help of Visual Basic.NET. Read full article

  • Windows Forms and Controls

    by musician

    One of the first things to learn in VB.net how to use forms, set it's properties and then do the same with controls AND then learn how to do it programatically. Well this article describes all of this in as simple a way possible and demonstrates how you can create the same result using Notepad and the VB.Net compiler.. Read full article

  • Leverage the .NET Framework with Visual Basic.NET

    by ggarung

    Using the .NET Framework, Microsoft Visual Basic developers can build robust applications. Arun Ganesh introduces the new features of VB.net for VB programmers.. Read full article

  • COM Interoperability in .NET Part 1

    by ggarung

    In the first part of this series, Arun Ganesh introduces interoperability between the new .NET technologies, and how to use old Win32 API calls in your .NET applications.. Read full article

  • Planning Form Layout in VB.NET

    by bennykmathew

    Benny Mathew demonstrates some new features in VB.net, designing fairly complicated forms, which can resize, using anchors, docks and panels with a dash of code. . Read full article

  • Why are we criticizing VB.NET?

    by David R. K. DeLoveh

    David DeLoveh takes a look at the pros and cons of VB.NET. Read full article

  • New Object-Oriented Capabilities in VB.NET

    by Wrox

    A sample chapter from the Wrox book, VB.NET Programming.. Read full article

  • Introducing Windows Forms

    by Microsoft

    Learn about the new forms package, allowing developers to take full advantage of the rich user interface features available in Windows. Read full article