The Latest

DevX - Software Development Resource

Configure IIS for Debugging ASP Pages in Interdev

In order to debug ASP pages in Visual Interdev, you need to change some some IIS settings. Open the Internet Service Manager console (using the inetmgr command on Start?>Run). Right

DevX - Software Development Resource

A Quick Way to Obtain create table Statements

Pressing Ctrl + C in the table view of Enterprise Manager copies the create table statement along with constraints, defaults, etc. to the clipboard. Related Posts Khaby Lame: from TikTok

DevX - Software Development Resource

The reverse() Algorithm

You can use this algorithm to reverse the order of elements in any sequence container. It takes two bidirectional iterators as argument: int iArr [] = {1, 2, 3, 4,

DevX - Software Development Resource

Processing EDI Documents into XML with Python

any companies devote a sizeable portion of their IT infrastructure to converting traditional EDI data to and from the data formats their back office systems use. Typically, they handle this

DevX - Software Development Resource

Review: Take Your PHP Web Pages Pro with the Zend IDE

espite its similarity to ASP, PHP is rapidly becoming the language of choice for Web development. Its simplicity, power, and widespread support are all factors that have influenced an increasing

DevX - Software Development Resource

Monitor a Java Application in 1.5 JVM

Simply start your application with: -Dcom.sun.management.jmxremote This allows you to monitor the GC, thread, and memory status of the application throughout: [jdk_home]/bin/jconsole Related Posts Microsoft launches AI PC project with

DevX - Software Development Resource

Accessing Individual Bits of a Value

Ever needed to access individual bits of a value? It can be done with bitshifting and a sequence of logical &s quickly and easily. When finished, you will have a

DevX - Software Development Resource

OOP Is Much Better in Theory Than in Practice

ike many ideas that sound good in theory but are clumsy in practice, object-oriented programming (OOP) offers benefits only in a specialized context—namely, group programming. And even in that circumstance

DevX - Software Development Resource

Harden MS Reporting Services Using Custom Extensions

ne of the most useful features of Microsoft Reporting Services is its extensibility model. Just about any aspect of Reporting Services can be custom-tailored to meet your specific requirements. Part

DevX - Software Development Resource

Wrapping Web Controls in a SharePoint Web Part

ost of the time, creating a Web Part in SharePoint isn’t about creating a totally new user interface; instead, the task usually involves connecting existing controls with SharePoint data or

DevX - Software Development Resource

The includes() Algorithm

You can use the includes() algorithm to determine if every element within a specified range of a sequence container is completely contained within a specified range of another sequence conatainer.

DevX - Software Development Resource

Increase Instance Capacity by Ten Percent

ArrayList doesn’t need any introduction to Java programmers. It is probably the most used component of the Java collection framework. One of the ArrayList constructors takes Collection as an argument.

DevX - Software Development Resource

Manage Database Metadata with POI and Excel

atabases are everywhere. In IT, you can’t build a substantial application without providing tables to store the data that the application will rely on (properties, configuration settings, etc.) and process.

DevX - Software Development Resource

An Intro to Java Object Persistence with JDO

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

Protect Yourself from PHP Worms

n recent months it’s become apparent that every computer system, regardless of operating system or programming language, bears a security risk. All computer software exposes attack surfaces to viruses and

DevX - Software Development Resource

Visual Inheritance with C#

Microsoft VS.NET provides design-time support for form inheritance. A derived form can be added to your solution by right-clicking on your project in the Solution Explorer window and choosing “Add…”