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

It All Adds Up

while ago I responded to a newsgroup post in which the poster had a table of inventory changes containing start and end dates, as well as the amount that was

Book Excerpt: Microsoft SharePoint 2007 Unleashed

DescriptionCompanies have been talking about knowledge management and leveraging their IT investments to enhance team collaboration for years, but have had difficulty implementing effective solutions that tie together the wide

Storing and Using RDF in Mulgara

f you’ve been following semantic web technologies, then by now you’re no doubt aware of semantic web data languages like the Resource Description Framework (RDF) and the Web Ontology Language

JavaFX Enters the RIA Race

ich Internet Application or RIAs are all the rage in application development circles now. How do you make web applications behave like more traditional desktop applications? You remember desktop applications

A Straightforward Approach to Silverlight Component Design

icrosoft recently took WPF/E (which stood for Windows Presentation Foundation Everywhere) out of the labs and released it as Silverlight, a new technology that lets you run XAML-based content—including animations

Fresh AIR for RIAs

ich Internet Applications (RIAs) represent not only an established, but a rapidly expanding, segment of software development. Although descriptions of RIA abound, most people agree that they blur the line

Managed Code Shines in Silverlight 1.1

n addition to the XAML and JavaScript combination supported in Silverlight 1.0, this Silverlight 1.1 Alpha client also supports managed code written in a language such as C# or VB.NET.

Have You Xiine It?

his is an exciting time for CoDe Magazine and EPS Software Corp.! For the last year or so, we have been building a brand new, .NET 3.0-based digital publishing platform

Enterprise Software Configuration Made Simple

n organized system for maintaining and delivering configuration information is an essential component of any enterprise software system. For small enterprises with only a few servers, registry entries and individual

I Dreamt I Was a Mac, and then I Woke Up

pass along this cautionary tale, just in case, like me, you had considered a “change in life”. I’ve always enjoyed broad changes to technical infrastructure just for the fun of

Writing Commerce Scripts in Second Life

ommerce occurs in Second Life whenever money changes hands. Money, in Second Life, is the Linden Dollar. Although the Linden Dollar is not an actual currency, it can be freely

Convert a java.util.Date Object to a java.sql.Date Object

The following code demonstrates how to convert a java.util.Date object to a java.sql.Date object: import java.sql.*;import java.util.*;public class cs{public static void main(String[] args) { GregorianCalendar date_1=(GregorianCalendar)Calendar.getInstance(); System.out.println(date_1.getTime()); java.sql.Date date_2= new

The Sizeof() Operator Only Works at Compile Time

The Sizeof () operator only works at compile time and doesn’t evaluate anything at run time. In the following code snippet, the func() function is never called. The inner sizeof()

Using the SecureString Class

NET 2.0’s System.Security namespace includes the SecureString class, which lets you create encrypted strings and delete them from memory when they’re no longer needed. You can even make a string

Infrared Programming Using the .NET Compact Framework

nfrared communication is one of the most common forms of communication for devices today. If you’ve ever used a TV remote control, you’ve experienced the convenience of using infrared communications.

Send Emails Through SMTP in .NET

When sending emails via SMTP in .NET, developers seldom check to ensure the SMTP service is installed and running. Here’s some code to perform the check and start the service

Create a Custom DataGridView Column

tend to get random e-mail requests for programming help. I do the best I can to solve all the issues that come up, but generally refer random questions to the

Employing a Winning Porting Strategy

n the recent “Race to Linux 2.0” competition, a .NET programming event hosted by DevX, .NET developers were invited to get ASP.NET applications up and running on Linux. The three-part

nullptr: A Type-safe and Clear-Cut Null Pointer

he new C++09 nullptr keyword designates an rvalue constant that serves as a universal null pointer literal, replacing the buggy and weakly-typed literal 0 and the infamous NULL macro. nullptr

Compressing a File with MS Visual J# .NET

The Microsoft Visual J# .NET 1.1 Class Library (vjslib.dll) contains methods you can use to compress a file. The following code demonstrates how to use them. /* Code to zip

The Enhanced for loop in Java 1.5 (5.0)

There have been a lot of enhancements to existing features in Java 1.5 (5.0). One of the simplest improvements is to the most commonly used for loop. Here’s how it