The Latest

DevX - Software Development Resource

Traverse XML Data Using JavaScript

n this article, I’ll show you how to build an XML-based, client-side JavaScript app that reads data from external XML files, traverses the XML data, and displays that data in

DevX - Software Development Resource

The RefTools add-in

The RefTools add-in extends Excel with new tools for reference operations, data manipulation and formatting. Capabilities include pasting, counting, hiliting, deleting or replacing values found in unsorted reference ranges, fuzzy

DevX - Software Development Resource

CompareFiles – Comparing two binary/text files

‘ Returns a boolean indicating whether two files are equal’ Example: Debug.WriteLine(CompareFiles(“D:File1.mdb”, “D:File2.mdb”))Function CompareFiles(ByVal path1 As String, ByVal path2 As String) As Boolean Dim file1 As New System.IO.FileInfo(path1) Dim file2

DevX - Software Development Resource

CompactPathToControl – Shorten a path by using ellipses

Shared Function _ GetWindowDC(ByVal hWnd As Integer) As IntegerEnd Function Shared Function _ PathCompactPath(ByVal hDC As Integer, _ ByVal pathBuffer As System.Text.StringBuilder, _ ByVal dx As Integer) As BooleanEnd Function’

DevX - Software Development Resource

FolderHasFiles – Returns whether the specified folder has files

‘ Returns a boolean indicating whether the specified folder has filesFunction FolderHasFiles(ByVal folderPath As String) As Boolean Return System.IO.Directory.GetFiles(folderPath).Length > 0End Function Related Posts CA Improves API Management CapabilitiesCreating a

DevX - Software Development Resource

The Buck Stops Here

his article was written in response to the opinion piece, “

DevX - Software Development Resource

Agile Requirements: The Real Message

n April 2, 2003 Lori Piquet, DevX’s Editor-In-Chief, wrote an editorial titled “Are You Passing The Requirements Buck?.” The editorial discussed both a presentation that I had given for the

DevX - Software Development Resource

Altova Software Offers XML Solution for Unstructured Data

nstructured data is that information hidden in a company’s e-mails, memos, notes from call centers and support operations, news releases, user groups, chats, reports, letters, surveys, white papers, marketing material,

DevX - Software Development Resource

Explore and Extend the Cassini Web Server

TTP services are a core function for supporting many current application development technologies, including Web services, ASP.NET applications, and other traditional Web applications. The traditional way to provide HTTP support

DevX - Software Development Resource

GetDatabaseTables – Retrieving the table names of a database

‘ Returns the names of all the tables in the database identified by the input ‘ connection string’ Requires Imports System.Data.OleDb” Example:’ Dim tables() As String = GetDatabaseTables’ (“PROVIDER=Microsoft.Jet.OLEDB.4.0; Data

DevX - Software Development Resource

RestartDefaultSite – Restarting the default website in IIS

‘ Restarts the default web site in IIS Sub RestartDefaultSite() Dim p As New Process() p.StartInfo.FileName = “net.exe” p.StartInfo.WindowStyle = ProcessWindowStyle.Hidden ‘ set the parameters to STOP the service p.StartInfo.Arguments

DevX - Software Development Resource

KXML: A Great Find for XML Parsing in J2ME

was recently working on a project to develop a multiplayer game for J2ME devices. In this application communication from the server to the device was originally coded as simple key-value

DevX - Software Development Resource

Book Excerpt: .NET Windows Forms in a Nutshell

evelopers are beginning to understand that .NET Windows Forms are a powerful technology for building a large class of applications for the Windows .NET platform. They offer nearly the same

DevX - Software Development Resource

Are You Passing the Requirements Buck?

he more time I spend thinking about alternative programming methodologies, the more I wonder why there’s so much resistance. Which is to say that I generally believe in the concepts

DevX - Software Development Resource

Get Personal with C# Custom Attributes

henever I bump into one of my Java friends, he invariably tells me C# is no better than Java. I generally reply that one of my favorite features of C#

DevX - Software Development Resource

Book Excerpt: How to Do Everything with JavaScript

ring interactivity to any Web site with this easy-to-follow guidebook on JavaScript. Author Scott Duffy takes the fear out of working with a programming language by delivering instruction and theory