The Latest

DevX - Software Development Resource

AJAX: A Fresh Look at Web Development

ouldn’t it be nice if you could turn your plain old Web pages into something more exciting? Isn’t it time to inject some life into your decade-old Web technologies? If

DevX - Software Development Resource

Building .NET Applications with NAnt

key tool in any software development arsenal is a structured build process. NAnt is a tool for building Visual Studio .NET applications that you can incorporate into your development process

DevX - Software Development Resource

Identify the Owner of a User Table

If your database is maintained by more than one user and some of those users have rights to create tables, it can be difficult to identify the owner of a

DevX - Software Development Resource

Apply a Gradient to Any Control that Has an hDC

This class allows you to apply a gradient to any control that has an hDC?forms, Pictureboxes, etc. Simply load the class and tell it the start color, direction of gradient,

DevX - Software Development Resource

Using Pixels in WinForms .NET

Though .NET no longer supports twips, one twip is still 1/1440 inch. You can use the dpiX and dpiY properties of the Graphics class to obtain the horizontal or vertical

DevX - Software Development Resource

Obtaining Wireless News with J2ME and PHP

he Java 2 Platform, Micro Edition (J2ME) is targeted at cell phones, smart cards, pagers, and other consumer devices. J2ME technology consists of a virtual machine and a set of

DevX - Software Development Resource

Review: Omnicore X-develop Professional 1.0

n today’s heterogeneous environments, it’s not uncommon to have to switch between environments?say VB.NET and Java?and that usually requires having two robust IDEs (especially considering that VisualStudio.NET is not just

DevX - Software Development Resource

Pocket This Decoder for WS-Alphabet Soup

he Web Services Interoperability organization (WSI) has developed a whole stable of standards upon which Web services commerce and communication can be executed securely. These standards are in great demand

DevX - Software Development Resource

Accessing Server Controls Using JavaScript

Suppose you have a Web server control called TextBox in your Web page: You can access this value in a couple ways using JavaScript: document.getElementById(”).value;ClientID – server control identifier generated

DevX - Software Development Resource

Automate Resource Management with shared_ptr

td::auto_ptr is the only smart pointer class available in C++98. Alas, since this class is neither assignable nor copy-constructible, creating containers of auto_ptr objects is illegal. This limitation has been

DevX - Software Development Resource

Using Recursion Efficiently

It’s important to use recursion carefully to avoid running into stack overflow. This sample code reverses a given integer number using recursion: #include “stdafx.h”int myreverse(int num){ static int nLocal =

DevX - Software Development Resource

Developing Windows Forms Applications on Mono

ross-platform software development means different things to different people. For many programmers immersed in Microsoft languages such as VB.Net or C#, the real test comes down to creating a Windows

DevX - Software Development Resource

UML for the Software Developer, Part 5: Component Diagrams

ccording to Clemens Szyperski (author of “Component Software?Beyond Object-Oriented Programming,”), software components are binary units of independent production, acquisition, and deployment that interact to form a functioning system. He continues