The Latest

DevX - Software Development Resource

Semantic Search Arrives at the Web

Semantic search has attracted a lot of attention in the past year, largely due to the growth of the semantic web as a whole. The term semantic search itself is

DevX - Software Development Resource

Using the New ListView Control in ASP.NET 3.5

ny user-focused application that you write requires some sort of data integration. At minimum, you will need to retrieve some data from a data source such as a relational database

DevX - Software Development Resource

Mobile Confusion

With last week’s release of the 3G iPhone, things are really heating up in mobile software development. My inbox is flooded with announcements–Nokia going open source, Google phone rumors, Windows

DevX - Software Development Resource

How to Calculate the Alignment in C++

Use the following class to help calculate the alignment in C++: template&lttypename T&gtclass Alignment{ struct Align { char align; T t; };public: int alignment() { return sizeof(Align) – sizeof(T); }};

DevX - Software Development Resource

Turn Off Auto-Commit for Better Performance

When you first establish a connection to a database, the connection is in auto-commit mode, by default. For better performance, turn auto-commit off. You can do this by calling the

DevX - Software Development Resource

New Web Fonts for Windows Vista

Microsoft has released a number of new Windows Vista fonts, for use in web development. They are described on the Microsoft Typography site, with examples shown in XPS files. If

DevX - Software Development Resource

Create the “Night” Filter Using the RGBImageFilter Class

The following code uses the RGBImageFilter class to create the “night” effect on an image: import java.awt.image.*;public class NightFilter extends RGBImageFilter { double frac; //0.0&lt=g>=16; int green=rgb & 0x0000FF00;green>>>=8; int

DevX - Software Development Resource

Probe and Modify Your Types’ Alignment Programmatically

he alignment requirement of your target platform is usually transparent. However, when you need to send or receive objects via a network connection, serialize objects, design heterogeneous containers, or construct

DevX - Software Development Resource

Semantic Technologies with Functionality

When I started with DevX, I knew nothing of the Semantic Web and the technologies that surround it. As I researched the subject, I realized that while a segment of

DevX - Software Development Resource

Getting Started with OpenCalais and SearchMonkey

any digital documents reside on the web and other networks, but few of them have sufficient metadata to accurately identify the content. Adding metadata to a document has typically been

DevX - Software Development Resource

Using the innerHTML Property

To change the text that appears when users click on a button in your program, use JavaScript’s innerHtml property. &ltscript type=”text/javascript”&gtfunction changeText(){ document.getElementById(‘boldStuff’).innerHTML = ‘Fred Flintstone’;}Welcome to the site, dude

DevX - Software Development Resource

Create a “Night” Filter Using RGBImageFilter

This following code shows you how to create the “night” effect for an image using the RGBImageFilter: import java.awt.image.*;public class NightFilter extends RGBImageFilter { double frac; //0.0&lt=g>=16; int green=rgb &

DevX - Software Development Resource

Prevent Inheritance from a Base Class

Use code such as this to prevent subclasses from deriving from a base class: class myclass; class my_lock { friend class myclass; private: my_lock() {} my_lock(const my_lock&) {} }; class

DevX - Software Development Resource

Introduction to the Live Search API

ave you ever wanted to implement search capabilities on your own Web site but didn’t want to implement the logic and deal with issues such as storage and indexing? Now

DevX - Software Development Resource

Beyond XML and JSON: YAML for Java Developers

espite all the buzz generated by dynamic languages (Ruby, Groovy, Python, etc.) and their related frameworks (such as Ruby on Rails), the vast majority of Java developers reading this article

DevX - Software Development Resource

Mastering the Windows Mobile Emulators

icrosoft owes a large part of its success to the various development tools it has offered to the developer community. If you have experiences developing on other platforms, you would

DevX - Software Development Resource

Are Expectations of Privacy Age-Related?

An interesting split is becoming obvious in computing today; older people (among them those who were instrumental in empowering computing and the modern web), are increasingly worried about privacy, while

DevX - Software Development Resource

Search Google via Email

For all those people who cannot access internet from the office, there is no need for it. You can search and receive Google search results through email. Simply send an

DevX - Software Development Resource

Use UNION ALL Instead of UNION

To improve query speed, use the UNION ALL statement. UNION ALL looks for and discards duplicate rows in the result set, whereas the UNION statement does not. Related Posts Software

DevX - Software Development Resource

Create a “Fog” Filter Using the RGBImageFilter Class

This following code shows you how to create a “fog” filter for an image using the RGBImageFilter class: import java.awt.image.*;import java.awt.*;public class FogFilter extends RGBImageFilter{ int fogg; //0

DevX - Software Development Resource

Getting Started with Windows Live Admin Center

hen developing with Windows Live services, you open your application to a whole new world of software integration. In this fascinating realm of mash-up mania, developers can find tools for