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

Drag Once DataBinding with Custom Controls

n this article, I’ll explain how the Data Sources Window in Visual Studio 2005 will enable you to extend the list of controls supported for Drag Once Databinding. I’ll show

DevX - Software Development Resource

Simplify Java Object Persistence with Hibernate

toring and retrieving information for most applications usually involves some form of interaction with a relational database. This has presented a fundamental problem for developers for quite some time since

DevX - Software Development Resource

Sybase’s DataWindow .NET: Way Beyond the .NET DataGrid

ybase’s DataWindow .NET provides a powerful tool for creating data driven applications with capabilities far beyond the native DataGrid. With it, you can develop flexible, high performance, visually appealing applications

DevX - Software Development Resource

Enforcing Compile-time Constraints

eneric containers and algorithms often impose certain restrictions on the objects that they manipulate. For example, the std::sort() algorithm requires that the elements on which it operates shall define the

DevX - Software Development Resource

Format a Textbox String to the Correct Currency

This code allows you to format a textbox string to the correct currency in SQL Server, independent of regional settings or the user input decimal symbol: Public Function FormatMoney(ByVal strValue

DevX - Software Development Resource

Integrate the Jad Decompiler Plug-in into Eclipse

on’t you hate it when you are debugging your code within Eclipse, and while stepping into a method call, a Class File Editor pops up exclaiming “Source Not Found”? Wouldn’t

DevX - Software Development Resource

Using Insert Iterators

Insert iterators come in very handy when you need to populate a container using an STL algorithm which uses an assignment operator to fill in the data: int iArr []

DevX - Software Development Resource

Breaking Type Barriers with UDTs in SQL Server 2005

he integration of the common language runtime (CLR) into Microsoft SQL Server2005 gives developers much more flexibility than ever before. This new feature lets you author stored procedures, triggers, and

DevX - Software Development Resource

Best Practices

he focus of this issue is best practices and techniques. From testing to free tools you can use with ASP.NET, we discuss several topics that are important to developers. I

DevX - Software Development Resource

Making Sausages

henever you gather multiple travel veterans in the same location for long enough, sooner or later the discussion turns to travel horror stories. I’ll admit that it’s just August as

DevX - Software Development Resource

Getting Started with Unit Testing

utomated unit testing lets a team exercise its entire code base against a battery of tests, facilitating a quick, reactive environment by providing instant feedback during development. When developers can

DevX - Software Development Resource

Maximize Your Productivity with Project Item Templates

ode reuse has been a mantra of software development for decades. .NET provides for code reuse in many ways including inheritance, components, and of course the indispensable function. Visual Studio

DevX - Software Development Resource

Optimize the Massive DELETE Operation in Oracle, Part 2

y previous 10-Minute Solution “Optimize the Massive DELETE Operation in Oracle, Part 1” described the technique for performing a high-performance massive DELETE operation as a direct-path INSERT. At the end

DevX - Software Development Resource

CoDe Talks: Q&A with Steve Ballmer

CoDe (Markus Egger): Mr. Ballmer, There is so much written about offshore development these days?I know Microsoft has offshore development operations in various parts of the world…how is it working

DevX - Software Development Resource

Understanding and Using .NET Partial Classes

ne of the language enhancements in .NET 2.0?available in both VB.NET 2005 and C# 2.0?is support for partial classes. In a nutshell, partial classes mean that your class definition can

DevX - Software Development Resource

Partially Optional Function Parameters in VBScript 5.0+

As you know, VBScript doesn’t support the declaration of optional parameters in subroutines or functions. So, if you have a function declared as: Myfunction(p1,p2,p3), to simulate optional parameters, you’d have

DevX - Software Development Resource

Using STL Binders

You can use STL binders to use binary function objects as unary function objects in many STL algorithms which need them. Suppose you need to find the count of strings