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

SQL Server 2000 Replication 101: Replication Agents

eplication agents are the basic components of SQL Server 2000 replication. Before you settle on the type of replication you want in your application architecture, it is important to understand

DevX - Software Development Resource

Big Tech·Ed Accelerates Big-Tech Breeding Frenzy

o matter what Microsoft representatives said this week at its Tech·Ed conference in San Diego, the message that the company is delivering to the roughly 11,000 IT administrators and developers

DevX - Software Development Resource

Sorting in the .NET Framework

n .NET, sorting arrays or collections of primitive types is a relatively simple task. Most developers understand that for a collection of numbers or strings, the runtime will know how

DevX - Software Development Resource

Behold WSE 2.0: Removing Another Layer of WS-Pain

he official release of Microsoft’s Web services Enhancements (WSE) toolkit promises to help developers deal with at least some of the pain and suffering accompanying the emerging Web services’ standards.

DevX - Software Development Resource

Showing Some MVP Love

t’s always great to be recognized for doing a great job or helping someone out. That was the original idea behind Microsoft’s MVP (Most Valuable Professional) program. In Microsoft’s (collective)

DevX - Software Development Resource

Comparing Things

ne thing I’m pretty sure of is that boys like to compare things. Yes, I know what you’re thinking?that’s not where I’m going here. I have a vivid recollection of

DevX - Software Development Resource

So Many Choices, So Little Time

he 1st quarter of this year has been one of the most challenging and interesting quarters for me in some time. I have been working with a client to help

DevX - Software Development Resource

Finish Your Week with .NET Rocks!

his is the first in a series of what I hope will be one of your favorite columns for years to come! I am the host of a talk show

DevX - Software Development Resource

Async-Up Your Objects

art of good component writing involves designing and developing components with the idea that developers other than you will use them. A good practice is to use conventions that are

DevX - Software Development Resource

A Practical Guide for Integrating EJB and Struts

ou’ll find plenty written about building and deploying EJB, and perhaps equally as much about building applications with the Struts framework. But what about leveraging EJB and Struts together? This

DevX - Software Development Resource

Prefer Templates to Macros

Because macros do not behave as function calls but merely as text substitutions, they might exhibit strange behaviors during complex calls. For instance: #define mul (t) t*t*tmul(3+3) gives 24 though

DevX - Software Development Resource

Create Rollover Graphics in ASPX Pages

Although this tip creates onmouseover and onmouseout attributes in the IMG tag within the A tag when rendered to the browser, it could be used to set any attributes. Create

DevX - Software Development Resource

Import Web Content into Your Excel Workbook

Importing Web content into your Excel workbook is simple using Micorosoft’s WinHTTP tools (they are free and included with IE). First, create and save an Excel Workbook. Next, access the

DevX - Software Development Resource

Suffering from Spam?

One of the major ways that spammers get email addresses is by crawling Web pages and extracting any email addresses they find. As part of your own Web site development,

DevX - Software Development Resource

Add Flash to Your .NET WinForms to Create Skinable UIs

ithin the last few years, Macromedia’s Flash has become a leading development environment for online vector animation, Web site production, and rich Internet applications?as well as for offline presentations, small

DevX - Software Development Resource

Unheralded Java Filters Simplify Web-app Testing

ava filters, first introduced in the Java Servlet specification 2.3, are a powerful addition to any Java Web application toolkit, yet they probably are the most under-used and under-appreciated of

DevX - Software Development Resource

Mixing JSTL and JSF in Web Applications

avaServer Pages Standard Tag Library (JSTL) is a library of standard tags that you can place on JavaServer Pages (JSP). The tags encapsulate functionality commonly used in Web applications. JSTL

DevX - Software Development Resource

Preserve Code Safety with Conversion Operators

ertain objects must be converted to a low-level representation and vice versa. Programmers using std::string objects, for instance, have to convert them to bare char pointers, as in the following

DevX - Software Development Resource

Named Parameters in C++

Named parameters allow you to send function arguments in any sequence. This is very useful when your functions have long parameter lists. Named parameters are not supported in C++, but