devxlogo

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

Serialize and Deserialize an Object Instance to XML

To serialize an object instance to XML, you need to use the XMLSerializer class’s Serialize method. The code snippet below demonstrates: XmlSerializer xmlSer = new XmlSerializer(objInstance.GetType());System.Text.StringBuilder sb = new System.Text.StringBuilder();System.IO.StringWriter

Build a Frame with a ScrollPane in JavaFX

What follows is a simple frame designed with the JavaFX scripting language. The frame also has a ScrollPane component. import javafx.ui.*;import javafx.ui.canvas.*;import javafx.ui.filter.*;import java.lang.System;Frame { centerOnScreen: true visible: true height:

Book Excerpt: Microsoft Expression Blend Unleashed

Microsoft Expression Blend Unleashed is not only about learning a new designer tool; it targets both developers and designers, showing both a new way of thinking about UI development. Expression

Develop a Mobile RSS Feed the Easy Way

o, you’ve decided to try building a mobile application. You’re looking for a lot of control over the user experience and you’d also like access to various device features: sound,

State of the Semantic Web: Know Where to Look

here is no question that the web is an unprecedented success. It is the single most adventurous and useful platform for information exchange ever conceived and built. The architectural choices

A 3D Exploration of the HTML Canvas Element

ector graphics abound on the web, and they come in a variety of formats, including Flash and SVG. HTML Canvas, one of the newer incarnations, occupies a different niche from

Set the Computer’s Name Through .NET

You can set your computer’s name using the SetComputerName function, which is available in kernel32.dll: //Codeusing System.Runtime.InteropServices; [DllImport(“kernel32.dll”)] static extern bool SetComputerName(string lpComputerName); bool status = SetComputerName(“MyDen”);

Set Multiple Fonts Using Single CFont Object

Did you know you can set multiple fonts for several controls using a simple CFont object in MFC? Using the Detach() method, which disassociates the associated window object from a

Loading Classes Directly from .jar Archives

Whenever a class is referenced in a Java program, the class is loaded using the class loader from the JVM’s bootstrap or from the application-server. This often becomes a problem

Interpreting Images with MRDS Services

ost people do not realize how difficult it can be to process a digital image and extract meaningful data, such as information required to drive a robot or operate an

Making XQuery Control Structures Work for You

colleague of mine, a database programmer who had spent some time working with an early XQuery implementation, once referred to the language as the smiley language. When I asked whether

Executives Avoiding Cloud Computing in Droves

Cloud computing has been getting an increasing amount of press recently, because it offers attractive solutions to a number of business problems. Cloud computing translates to “hosted applications;” a hosting

Sharpening Your Axis with Visual Basic 9

isual Basic 9 has a new set of language features that allows developers to work with XML in a much more productive way using a new API called “LINQ to

Overview: C++ Gets an Overhaul

en years after the ratification of the first ISO C++ standard, C++ is heading for no less than a revolution. C++0x, the new C++ standard due in 2009, brings a

Simpler Multithreading in C++0x

ne major new feature in the C++0x standard is multi-threading support. Prior to C++0x, any multi-threading support in your C++ compiler has been provided as an extension to the C++

Easier C++: An Introduction to Concepts

very C++ programmer has had one of those days: A simple use of a template library turns into a nightmare, with pages upon pages of error messages streaming out of

Implementing SOA in the Real World: Insights from the Trenches

or most enterprise architects, the value proposition of service-oriented architecture (SOA) is clear: SOA enables flexibility, agility and re-use benefits that are broadly recognized throughout the software development community. You

Find the Java Bugs That Pose a Threat with FindBugs

indBugs is an open-source static analysis tool designed to find bugs in your Java code. Unlike many other static analysis tools, however, FindBugs concentrates almost exclusively on isolating potentially dangerous

Yahoo! Releases Fire Eagle Out of Beta

At a lunch conference yesterday, Yahoo! released Fire Eagle out of beta. This API allows you to broadcast your location to whomever you want, automatically or manually via your phone.

Generating Generic XForms for OpenOffice

previous article on XForms in OpenOffice showed how to create a simple XForm in OpenOffice. My introduction to this particular technology came while working on the Danish UBL project, which

Play an MP3 Using Java Media Framework

The following code shows you how to develop a simple Java application that can play MP3 files. This application is based on JMF (Java Media Framework). import javax.media.*;import java.io.*;import java.net.URL;