We are an award-winning tech entrepreneurship website where trusted experts can provide value globally.

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.

devxlogo

Trusted for 26 years

Over 30K Articles

1M+ Readers

Expert-reviewed

10K+ Tech Terms

As seen in:

microsoft logo
business_insider_logo
wired_logo
berkley
arstechnica_logo
hackernoon

The Latest

DevX - Software Development Resource

How Powerful Is Your StAX Parser?

This tip is a simple application that demonstrates the possibilities of your StAX parser by setting the XMLInputFactory properties to true/false. The StAX parser tested in this example is the

DevX - Software Development Resource

Having Fun with Code Snippets

here are some pieces of code that you write over and over again. Some of these pieces make sense as standard components or standard methods, such as logging or validation.

DevX - Software Development Resource

Displaying Mouseover Text in Web Pages

In Web pages, when you move the mouse over an image, you can see a description of that image.Similarly, you can have a mouse over text for a link in

DevX - Software Development Resource

Create an RMI-JRMP-SSL Server Using the New JDK1.5.0 Classes

Usually, the RMI client is an RMI client only in that it specifies the true store zone for certificates. For example, you can use any certificate available to System.setProperty: (“javax.net.ssl.trustStore”,”SSLcert”);

DevX - Software Development Resource

X- and Y-Axis Transformations in SQL Server

hen I was writing code for user interfaces, I needed to present data in different ways. Logically it wasn’t difficult, but since the presentation layout was often quite different from

DevX - Software Development Resource

Java SE 6 First Impressions: A Desktop Winner

he recently released Java Standard Edition 6 (Java SE 6, a.k.a. Mustang) beta is feature complete and stable enough for mainstream evaluation. I downloaded and test drove the release in

DevX - Software Development Resource

Flash Mobile: Coming to a Hand Near You

y now, it’s certainly no secret to anyone that Flash is a successful delivery option for animation and interactive content on the desktop. Flash content can be distributed in its

DevX - Software Development Resource

Connect Flash to a Database Using Sockets

or someone coming to ActionScript development from a traditional client-server background, connecting Flash to a database is a bit of a black art. In the .NET or Java world, you

DevX - Software Development Resource

Data Binding in Windows Forms 2.0

here’s a lot of new ground to cover about data binding in Windows Forms 2.0, so it’s best to just jump right in. This article assumes you have SQL Server

DevX - Software Development Resource

Power to the People

t’s the responsibility of the developer to ensure the best user experience for the increasing number of mobile PCs being bought and used. Every activity your application carries out can

How to Write Software Just Once

As you work on consecutive projects, you will eventually find yourself coding the same functionality repeatedly. When you reach this stage, you’re ready to explore the idea of code reuse.

DevX - Software Development Resource

Copy Selected Text Within a Browser to a Clipboard

Use the following code to copy selected text within a Web browser to a clipboard in VB.NET 2.0: Dim docx As HtmlDocument = WebBrowser1.Document Dim readme As Object = Nothing’assume

DevX - Software Development Resource

A Quick Way to Bookmark a Web Page

Ever wanted to bookmark a Web page so you can read it later? Here’s a quick way to do it, that works in both IE and Firefox: CTRL+D This does

DevX - Software Development Resource

Beware of Using Loop Variables Outside the Loop

People using loop variables in compilers like VC++ 6.0 are acccustomed to using loop variables after the loop. For example, take a look at the following code: for (int i=0;

DevX - Software Development Resource

Move a Non-modal JDialog Together with its Parent JFrame

The following code allows you to move a non-modal JDialog together with its parent JFrame and vice versa in a Swing application. //new MovingTogether(jFrame1, jDialog1); (“jFrame1” is a JFrame//and “jDialog1”

DevX - Software Development Resource

Ink And The Database

hether it’s full-text search or geometric queries, you’ll have to move beyond BLOBs to get the most from storing Ink in the database. The SQL standard does not provide an

DevX - Software Development Resource

Allocating Arrays with Placement new

llocating objects on a predetermined memory address has become a popular idiom in recent years, particularly in mobile programming, embedded systems, and custom garbage collectors. However, the technique shown in