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

Building Robust UIs in Mono with Gtk#

ust as Microsoft provides a native desktop UI toolkit called Windows Forms that ships with Microsoft .NET, the Mono project provides a compatible implementation of this same API, making it

DevX - Software Development Resource

Use a Macro to Improve Your Debug Output

Frequently, and especially during development and debugging, you want to write out the values of a variable. To distinguish these variables, label them by putting this directive in: #define PUTOUT(x)

DevX - Software Development Resource

Hiding Columns in a DataGrid

Using the column index to hide columns in a DataGrid can pose a problem if the index changes. Here’s a quick workaround for when the columns are auto-generated. Using column

DevX - Software Development Resource

Monitor .NET Code Quality with FxCop and Custom Rules

XCop is a free code analysis tool (open source) from Microsoft that analyzes managed .NET assemblies. .NET assemblies contain metadata entries that describe the assembly and all its contained types.

DevX - Software Development Resource

Turning RFID Data into Information

hen designing an RFID system, you should first understand and consider two key aspects of turning RFID data into useful information. First, you need a way to convert the raw

DevX - Software Development Resource

Ping with J2SE 1.5.0

The following code shows you how to simulate the “ping” command with the J2SE Tiger InetAddress.isReachable method. import java.io.*;import java.net.*;public class reachable{ public static void main(String args[]) { String[] addrs=

DevX - Software Development Resource

Using the java.lang.reflect.Modifier Class

You know that you can extract constructors, methods, and variables from a Java class file. Generally, when you use Field fields[] = c.getDeclaredFields( ); where c is initialized using Class

DevX - Software Development Resource

A Quick Way to Copy DataRow

Instead of copying DataRow column by column, the following code copies data in one line from the source to the destination row: DataTable dtDest = new DataTable();dtDest = dsActivity.Tables[0].Clone();foreach(DataRow dr

DevX - Software Development Resource

Retrieving a Single Value from a Database

This PHP function pulls a single field from a single record in the database once the MySQL connection has already been established: function getField($field, $tbl_name, $condition = 1){ $result =

DevX - Software Development Resource

Read and Write Strings Using String Streams

String streams allow reading and writing strings just like cin and cout allow reading standard input and writing standard output. String streams may be used by including . Reading from

DevX - Software Development Resource

Nine ASP.NET Site Navigation Problem Solutions: Part 2

art one of this series introduced the first seven common site map navigation problems and their solutions. This part explores more advanced techniques with the final two problems: Hiding unauthorized

DevX - Software Development Resource

XLinq Part 2: Using Standard Query Operators

n Part 1 of this article series, you looked at XLinq’s ability to create, modify, and delete XML data. Building on that background, this installment focuses on XLinq’s query features,

DevX - Software Development Resource

Security at Home: Shore Up Your Home Network

ost people would never leave home with their doors and windows unlocked?leaving an invitation for someone to steal their valuable possessions. Neither should they leave the entrances to their personal

DevX - Software Development Resource

Web Control Templates Explained

n my travels I’ve had a chance to spread the good word of Web control development to many around the country; and I’ve also had a chance to meet many

DevX - Software Development Resource

Putting Content on a Diet

don’t know about you, but I fight a constant battle with weight. I’m sedentary, writing and coding, 99 percent of the time. The occasional huffing and puffing on the bicycle

DevX - Software Development Resource

Heard on .NET Rocks!: Talking .NET with Tim Huckaby

am the host of “.NET Rocks!”, an Internet audio talk show for .NET developers online at www.dotnetrocks.com and msdn.microsoft.com/dotnetrocks. My co-host Richard Campbell and I interview the movers and shakers

DevX - Software Development Resource

Whither T-SQL?

number of developments over the past 12 months have brought me to a conclusion: Transact SQL (T-SQL) must go. The trusty old workhorse language that powers our SQL Server databases

DevX - Software Development Resource

Build a Low Overhead Test Bed for Your JDBC Code

here’s a good chance that your enterprise applications interact with a database. Testing your application code against a database is important in making sure that your application works as expected.