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

Convert from cubic feet to cubic meters, and vice versa

‘ Convert from cubic feet to cubic meters, and vice versaFunction CubicFeetToCubicMeters(ByVal cuFeet As Double) As Double Return cuFeet * 0.0283End FunctionFunction CubicMetersToCubicFeet(ByVal cuMeters As Double) As Double Return cuMeters

DevX - Software Development Resource

Convert from miles to kilometers, and vice versa

‘ Convert from miles to kilometers, and vice versaFunction MilesToKilometers(ByVal miles As Double) As Double Return miles * 1.6093End FunctionFunction KilometersToMiles(ByVal kilometers As Double) As Double Return kilometers / 1.6093End

DevX - Software Development Resource

CDS Brings Entity-to-entity Computing to Life

istribution and decentralization?with XML as their foundation?are at the core of Digimax Multimedia’s collaborative decentralized services (CDS) technology. CDS is a development framework that is both a consumer and a

DevX - Software Development Resource

Java Copier Frees You from Tedious Coding

ometimes Java classes seem like close relatives who unfortunately don’t have the same parent. Their structures and looks are similar, but not so similar that you can derive one from

DevX - Software Development Resource

Load Testing with Apache JMeter

bad response time on your Web site can drive away visitors and prospective customers. Unfortunately, you may not realize that your Web site is having problems until people start complaining.

DevX - Software Development Resource

Using MySQL 4.0 with .NET

have been a Microsoft SQL Server developer for a number of years. One the things I like about SQL Server is that it is easy to install and once installed

DevX - Software Development Resource

Implementing Two-Way Control Binding for Web Forms

SP.NET has considerably raised the bar for Web development with very rich developer functionality built into a flexible and highly extensible object model. If you have a background of hand-coding

DevX - Software Development Resource

Add Mouse Wheel support to the VB6 IDE

Vanja Fuckar has developed a library that adds support for the mouse wheel in the VB6 IDE, i.e. in the code window, Immediate window etc. The library is written in

DevX - Software Development Resource

Adding Design-Time support to your classes

If you use VS.NET you know that there are a number of classes that offer visual design-time support, i.e. they can be dragged and dropped on your form, and their

DevX - Software Development Resource

The Enterprise Instrumentation Framework

e’ve all faced those irritable questions about our applications running in production. Typically a system administrator will spring one on you on a Friday afternoon just when you’re finishing out

DevX - Software Development Resource

Deconstructing Add-In Architecture in Visual Studio .NET

isual Studio .NET provides an incredible leap forward from its predecessor in terms of functionality, but eventually, every developer finds a sought-after feature that just seems overlooked. VS .NET provides

DevX - Software Development Resource

Hearts and Minds

rom the time Visual Studio.NET was first in beta there has been a constant debate about a subject that is near and dear to all Visual Studio .NET developers. This

DevX - Software Development Resource

The Mind of an Angry Coder: I Take Exception to That

y favorite source code repository is SourceGear’s Vault. Besides being written in .NET, it is highly optimized for remote development scenarios. I was installing a new instance of Vault on

DevX - Software Development Resource

ADO.NET Best Practices

o get the most out of ADO.NET classes, developers must fully understand the model and study a few best practices. Based on years of real-world experience with ADO, ADO.NET provides

DevX - Software Development Resource

Longhorn and Mozilla: Birds of a Feather

oftware technology goes forward in fits and starts. Bigger advances can cause plenty of information indigestion for technologists. At each leap, a new understanding gap opens up. Such a gap

DevX - Software Development Resource

Find and Replace a String in a Table

The folowing stored procedure will find and replace a string in a table: CREATE PROCEDURE [dbo].[sp_st_FindANDReplaceString]@Tablename varchar(20),@FieldName varchar(20),@FindString varchar(30),@RepalceString varchar(30)ASdeclare @sqlstring varchar(8000)Select @sqlstring = “Update ” + @Tablename + “

DevX - Software Development Resource

A Fabricated ADO Recordset

A disconnected recordset is a recordset which does not hold an active connection. A fabricated recordset can be viewed as a variation of a disconnected recordset. The variation in the