
Since 1998, DevX has helped people start businesses, build websites, and provide enterprise technology to people globally. Interviewing the likes of Microsoft’s co-founder, Steve Ballmer, the publication brings comprehensive, reliable, and accessible insights to the Internet.
Here’s the average developer’s newest dilemma: Intel and other CPU manufacturers have moved full steam ahead into creating multi-core chips to speed up computing. These chips increase processing speed not
You have to be truly geeky to get it, but do you know what the inside joke is with the proposed C++ 0x standard? Simply that it has been labeled
atrix components are great for visualizing data that you might normally export to Excel, or in a Pivot Table (year-over-year analysis is a good example). But if an analyst wants
llowing developers to leverage distributed computing resources has long been a goal of emerging technologies, including most recently RPC, CORBA, and RMI. However, these distributed computing technologies require considerable initial
here are many common problems that occur when corporations expand beyond their initial ontologies and start to build multiple ontologies that must remain consistent. Here is a list of the
penID is a service, framework, and protocol that is revolutionizing the realm of user authentication and identity services. Started in 2004 by Brad Fitzpatrick, OpenID is now a mature framework
corecards, test results, report cards, summaries?nearly everyone wants to skip past the details and see the bottom line; managers evaluate professional efforts based on performance. Microsoft’s Business Intelligence tools provide
s customers start to migrate from their existing SharePoint Portal Server 2003 (SPS2003) installations to the new version of SharePoint—Microsoft Office SharePoint Server 2007 (MOSS 2007)—one of the critical and
nother C++0x feature is going to simplify the way you write C++ code. Instead of tediously writing the type of a variable when you declare it, a C++0x compiler will
ne of the largest changes in SQL Server 2008 Reporting Services (SSRS) is that it no longer relies on IIS. Due mostly to feedback from end users on security (most
eople communicate with computers on two different levels. On the upper level you see a very flexible system of windows: you can move them, resize, overlap, or put side by
Use the following script to select a particular number of rows after a certain row in MySQL: SELECT * FROM tblDummy LIMIT 15, 30 This script returns the first 30
The following code may seem strange at first sight: class Base{private: virtual void f() = 0;}; How can a pure virtual function be private? Will the derived class be able
This tip shows you how to use the JAI API to load an image named myimage.jpg in just three lines of code: ParameterBlock parameterBlock=new ParameterBlock();parameterBlock.add(“myimage.jpg”);myimage=JAI.create(“fileload”,parameterBlock);…
Yes, you read that right. With .NET 3.0, you can extend any existing CLR type by adding one or more public methods to it?without recompiling the library. These new members
he DevX article Build Your First Grails Project: A Grails-Powered Blog showed how easy it is to create a purely functional web application using Grails. This article expands on the

Often developers are tasked with not only developing functional code but also with ensuring that the code they develop scales well and performs in the application environment. The tests that
he Spring Framework introduced many people to the idea of dependency injection, the notion that instead of looking up objects you need to collaborate with, you simply have them injected
or software to consistently deliver promised results, software development must mature into a true profession. Emergent Design points the way. As software continues to evolve and mature, software development processes
he iPhone is one of the most compelling and exciting user interfaces to appear on any consumer electronic device, with many innovations that make it a pleasure to use. This
Ever notice how your data isn’t filtered properly even though you’ve set the Row Filter Expression correctly? For example, suppose you have this code: DataView dv = ds.Tables[0].DefaultView; dv.RowFilter =”location=11″;
To test your TrAX application without involving your live business processes, simply build an identical transformation. You can do this using the newTransformer() method?without any arguments. The following code is
Unlike other routines, this one doesn’t need to pass the length of the returned string for later trimming in VBA. This is because the Delphi function also tricks VBA into
The easiest most and most efficient way to update XML documents is to use non-extractive parsers (such as VTD-XML) because they support incremental content update. Suppose you have the following
isual Studio 2008’s new extension methods feature stands out from among Visual Studio’s new offerings because you’ve been clamoring after it for years, right? What’s that? You weren’t clamoring for
n a previous DevX article, I wrote about the JavaScript framework Prototype, which aims to ease the development of dynamic web applications. That article ended with just a few words
he first article in this series looked at the basics of using callouts, their integral components, and how to create a simple callout. The rest of this series discusses more
n the Java enterprise development ecosystem, you’ll find a wide proliferation of frameworks and solutions. However, unlike in the Microsoft development world, very few of them provide an end-to-end solution
Use the following query to determine the version and build information for Microsoft SQL Server: select @@microsoftversion / 0x01000000 as version, cast(cast(@@microsoftversion as binary(2)) as int) as build; The query
To make your mouse pointer appear to be trembling, you first create a form with ScaleMode = 3 – Pixel. Then use the following code: Option ExplicitPrivate Type POINTAPI X










