The Latest

DevX - Software Development Resource

Offshoring: What You Already Know

he typical programmer wears clothes made in Honduras. He drives to work in a Korean car while he sips Mexican coffee. He sits down at his Chinese-made desk, and turns

DevX - Software Development Resource

Restrict Users to Launching Only One Instance of an Application

Use this code to make sure that users can only launch one instance of an application. static void Main() { Process ThisProcess = Process.GetCurrentProcess(); Process [] AllProcesses = Process.GetProcessesByName(ThisProcess.ProcessName); if

DevX - Software Development Resource

Returning from main()

Semantically, returning from main is as if the program called exit (found in in C++ and in C) with the same value that was specified in the return statement. One

DevX - Software Development Resource

A Utility Program to Display System Properties

The getProperty method in the System class can be used to display the system properties defined for your environment. Here is an utility program which takes the property name as

DevX - Software Development Resource

Build an Object-oriented File System in PHP

he term “object-oriented” is vague and frequently misunderstood. Jonathan Rees (with more insight than the average programmer) attempted to define its meaning , but even his definition does not necessarily

DevX - Software Development Resource

‘For-Each’ of My Own

Fast Facts Develop custom enumerating functionality and take advantage of iteration through non-collection-based classes. ne of the coolest things I like about the .NET Framework is the way collections are

DevX - Software Development Resource

Better, Faster XML Processing with VTD-XML

TD-XML is a new, open-source, non-validating, non-extractive XML processing API written in Java. Different from current XML processing technologies, VTD-XML is designed to be random-access capable without incurring excessive resource

DevX - Software Development Resource

Designing Smart Documents in Office 2003

uplication of effort in gathering information is an increasingly familiar scenario in many companies today. For example, an employee complains, “I’ve already submitted my expense report to finance, and now

DevX - Software Development Resource

Creating Custom Keyboard Shortcuts in VS.NET

Keyboard shortcuts are extremely useful when you use a particular option repeatedly?like when you select menus or toolbars manually. Sometimes, the default shortcut is cryptic and you cannot remember it.

DevX - Software Development Resource

Our Secrets to the My Namespace in VB 2005

lthough Visual Basic .NET is just as powerful as C# for building business applications, it did not get the initial push that C# did back at PDC 2000 when Microsoft

DevX - Software Development Resource

Offshoring: It’s Not Too Late to Change

here’s a great deal of information, innuendo, and rumor circulating concerning offshore outsourcing, more widely known as offshoring: the practice of moving jobs from a host country to a different

DevX - Software Development Resource

C# to Get Edit-and-Continue in VS 2005

n Monday morning, S. “Soma” Somasegar, Microsoft’s corporate vice president for the developer division, made the unexpected announcement, via his official MSDN-hosted Web log (http://blogs.msdn.com/somasegar/), that C# will get the

DevX - Software Development Resource

Using the New GridView Control in ASP.NET 2.0

he DataGrid control is one of the most powerful controls in ASP.NET 1.x. It’s highly customizable and most Web developers are familiar with it. However, although the DataGrid control is

DevX - Software Development Resource

Wireless Data Shot: Security and the Enterprise

he Evans Wireless Development Survey is a detailed report of extensive, in-depth interviews with almost 500 developers active in wireless application or infrastructure development. It was conducted in the Fall

DevX - Software Development Resource

Instrumenting Applications with .NET Tracing

or many small and medium sized programs, it isn’t too difficult to find and fix bugs based on reproducible information from users. As applications increase in size and complexity, the

DevX - Software Development Resource

Hide .jsp Names from the URL

There are instances when .jsp names need to be hidden from the URL. This can be done using various design techniques. But if your application is small and simle enough