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

Using an Associative Array

An associative array (also called map or dictionary) is an array for which the index does not have to be an integer. An associative array stores pairs of values. One

DevX - Software Development Resource

Implement a ListView ItemDoubleClick Event

Double-clicking an icon or file name in Explorer is the standard way of launching an application in Windows. However, if you’re developing an app that uses the ListView control from

DevX - Software Development Resource

Ensure Foolproof Data Entry Times

Asking users to enter time values can often lead to problems formatting what the user enters. I use this piece of code to create a drop-down list of hours, minutes,

DevX - Software Development Resource

Use Custom Form Properties

You can easily find out whether your user clicked on OK or on Cancel on a modal dialog. This example also prevents the user from unloading the form, and thereby

DevX - Software Development Resource

Keep Your Clustered Index’s Weight Down

In SQL Server 7, a significant change was made to the way nonclustered indexes work when a clustered index exists on a table. In version 6.5, the nonclustered index used

DevX - Software Development Resource

Prevent Browsers From Caching ASP Pages

Whenever you are programming in Active Server Pages, make sure that your browser is set to check for a new page every time. Otherwise, you may not see your latest

DevX - Software Development Resource

Stream Unique Identifiers

While attempting to deserialize (or unmarshal) a serialized object instance, you may generate an exception with a message similar to: java.rmi.UnmarshalException: Error unmarshaling return; nested exception is: java.io.InvalidClassException: RMIParm; Local

DevX - Software Development Resource

What’s in Name Mangling?

Name mangling, (the more politically correct term is name-decoration, although it is rarely used) is a method used by a C++ compiler to generate unique names for identifiers in a

DevX - Software Development Resource

Do You Know What Your Identity Is?

Everyone by now is familiar with how to create auto increment keys in SQL Server–just define an integer column with identity (start,increment) and you are set. To create a new

DevX - Software Development Resource

Primary Key Should Not be Clustered

By default, when you define a primary key in the create table statement, it uses a clustered index. However, a clustered key is best used to support queries that return

DevX - Software Development Resource

Debug Problems in Your GridBagLayout Code

The GridBagLayout is a flexible layout manager, but is also notoriously difficult to use. Some of the most common and difficult to debug problems occur when the amount of space

DevX - Software Development Resource

Use Full-Screen Mode in Visual InterDev 6

Giving yourself enough elbow room to design Web pages can be difficult inside the Visual InterDev environment. However, there’s a little-known feature that greatly expands your screen real estate. Full

DevX - Software Development Resource

Uses of Reverse Iterators

Reverse iterators are ordinary iterators except that they invert the semantic of the overloaded ++ and — operators. They are useful when the elements of a container are accessed in

DevX - Software Development Resource

JavaScript Include Files?

Question: I have JavaScript functions that I’m using in different pages. Is there a way to do a C/C++ type include so I don’t have to replicate the JavaScript code

DevX - Software Development Resource

Optimize SQL Using “Show Statistics”

The new and improved showplan in SQL 7 is certainly prettier and easier to understand than the previous version. However, a better method of focusing on trouble spots is using

DevX - Software Development Resource

Redirect System.out and System.err

A crude but common way of debugging Java programs is to use the public System.out and/or System.err instances of PrintStream to display information: System.out.println(“Entering section A of my code”); One

DevX - Software Development Resource

The Role of Sequence Adaptors

A sequence adaptor is a container built upon another container that modifies its interface. For example, the container stack is usually implemented as a deque, whose non-stack operations are hidden.

DevX - Software Development Resource

Provide Alternate Text for Images in FrontPage 98

The drag and drop convenience of Microsoft FrontPage 98 makes you more efficient but leaves some unprofessional touches to Web pages. For instance, when you drop an image into the

DevX - Software Development Resource

std::string and Reference Counting

The Standard’s specification of class std::string is formulated to allow a reference counted implementation. However, this is not a requirement. A reference counted implementation must have the same semantics as

DevX - Software Development Resource

Which Class is Returned by getClass()?

When a class is instantiated, the subsequent object is actually an instance of the most derived class in the class hierarchy. A point of confusion for some programmers is that

DevX - Software Development Resource

Dumping to a Remote Drive

For SQL Server to perform a dump to a remote drive (that is, another machine on the network), the ID that SQL Server runs under must have rights to the

DevX - Software Development Resource

Restore Visual InterDev 6 Environment With a Click

When you are working in Visual InterDev 6, it is sometimes handy to reposition the Project Explorer, Toolbox, and Properties windows as floating windows. However, docking the windows again can

DevX - Software Development Resource

Datawidowchild problems

Question: I have a datawindow d_case with a retrieval argument al_case_id. In this datawindow, I have two columns that are ddlbcolumn1 = judge with dddw_judge and column2 = contact with

DevX - Software Development Resource

VB – Scripting Host

Question: What am I missing? I can’t compile this: Private Sub Form_Load()Dim WshNetworkSet WshNetwork = Wscript.CreateObject(“Wscript.Network”)’ Local name mapped to remote share WshNetwork.MapNetworkDrive “Z:”, “\NTc$”end sub Answer: Just leave off

DevX - Software Development Resource

Active Partitions Under NT with VB6

Question: I have to tell you, you solved a problem for me (rebooting NT from VB), which I’ve been trying to figure out for months. Much thanks. Now I can

DevX - Software Development Resource

OpenUserobject on a tab control

Question: I am trying to use OpenUserObjectWithParm to dynamically open a datawindow on a tab page on a tab. All the objects are pfc descendents. I want to open one

DevX - Software Development Resource

Listing admins for remote computers

Question: Is there a way to pass in a local workstation’s host name and get a return of a list of the local administrators for that workstation? I have seen

DevX - Software Development Resource

Obtaining the List of Available Fonts

Some applications allow the user to select which font is used for displaying text. To do this, you need to be able to dynamically determine which fonts are available so