(Neil Knobbe) In a previous post, I showed you how you can deploy your application using ClickOnce. Looking at how to deploy extra files, like my first look at ClickOnce, was prompted by a post on vbCity.
Tag: Development
Taming Trees: B-Trees
(Rod Stephens) The previous article in this series on trees showed how to build a sorted binary tree. Inserting and locating items in a sorted tree is relatively quick and easy, so it’s natural to wonder if you could use a sorted tree as an index for a database. To find a record, you could look up i
Silverlight 2 Beta2 Released
(Scott Guthrie) Silverlight 2 Beta2 was released today. You can download both Silverlight 2 Beta2 and the Visual Studio and Expression Blend tools support to target it here.
How to Dump when a Function Fails
(Tom) So here are the steps you can use in the debugger to get it to create a process dump when a given function fails. Please note that this is only for a native function and not a managed (.NET) function.
Merge Sort
(Jim Mischel) The most common method of sorting a large file is to sort parts of the file, save those parts to disk, and then merge the parts together into the final output. Let me illustrate, using a very small example, how this is done.
Check maxlength of multiline textbox in javascript
(Surjit Singh Dadhwal) ASP.net provides textbox controls for data inputs and they are used vastly on the websites. TextMode=’Multiline’ property of textbox is used everywhere to input comments or any large data.
Taming Trees: Parsing and Sorting
(Rod Stephens) The first part of this series explained basic tree terminology and showed how to build a simple binary tree in Visual Basic or C#. It also explained how to perform traversals of trees but the only really practical application it showed was how to make a tree draw itself. Thats pretty
A Web based application configuration wizard
(defwebserver) The DotNetNuke project contains a time tested set-up wizard that works in a lot of situations. You can use a Web Deployment Project but it requires you to run a installer on the server. This may not work for a lot of situations where you are using a shared hosting server. The wizard a
Using Post-Build Event to Execute Unit Tests
(AzamSharp) Pre-Build and Post-Build events are powerful yet underused feature of Visual Studio. In this article I will explain how to use the Post-Build event to run your unit tests.
Crystal Reports.NET
(John Charles Olamendy) This article is intended to illustrate how to build reports using Crystal Report.NET. Reports are important components of enterprise applications and are mainly used to provide a descriptive and summary view of your data in order to discover information in huge volume of data
