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 SQL Aggregate Functions Is Efficient

All SQL-compliant systems, including Microsoft JET SQL, have a set of functions to return computed results of numeric data stored in a column. All the aggregate functions create effects that

DevX - Software Development Resource

Displaying a List of Checkboxes

All of the aggregate components in Swing–that is, components made up other components, such as JTable, JTree, or JComboBox–can be highly customized. For example, a JTable component normally displays a

DevX - Software Development Resource

Listing All Environment Variables

Environment variables are useful for gathering data about a client’s system settings, but different servers have different environment variables available to them. To find out what environment variables are available

DevX - Software Development Resource

Deploying Your Web Application to Another Server

Question: I developed a Web site with a database on my machine using Internet Information Server (IIS), Active Server Pages (ASP), and SQL Server. I want to install the site,

DevX - Software Development Resource

Refreshing Using the META Tag

Question: What HTML tag do I use to have the screen refresh every two minutes? Answer: The following META tag will work. The value of the CONTENT parameter will determine

DevX - Software Development Resource

Building a Web Site With Database Design

Question: I am designing a Web site for a conference. Over 2000 attendees are going to use the Web site for registering online, as well as for other interactive tasks,

DevX - Software Development Resource

Books Covering Visual Basic 6 and Web Classes

Question: I am building Web pages using Visual Basic 6, Web Classes, HTML, DHTML, and JavaScript. Do you know of any good books that actually explain this type of programming?

DevX - Software Development Resource

Incoming Calls While Surfing

Question: We have one phone line coming into the house. How can I get the phone to ring and the Internet connection to be broken if I’m on the net

DevX - Software Development Resource

Adding Two Submit Buttons to an HTML Form

Question: Can I use two submit buttons in the same form, but refer to two different scripts? Answer: Yes, it is possible to add two submit buttons to an HTML

DevX - Software Development Resource

Interacting With the Operating System Directly

In general, API functions and classes enable you to interact with the operating system. Sometimes, however, it is much simpler to execute a system command directly. For this purpose, you

DevX - Software Development Resource

Stop Data Input Errors Before They Start

When developing a database program, always keep the data-input user in mind. The most elegant program in the world is useless if the data is riddled with errors. If a

DevX - Software Development Resource

A Basic Class Finder Utility

Here’s a useful utility for finding the full pathname for a class (or any other file) from a Java program. This utility uses the method getClassNameFromPackage() described in the Tip

DevX - Software Development Resource

Finding Where Your ISP Stores Your ASP Files

Although your Internet Service Provider (ISP) tells you the virtual directory that holds your Active Server Pages site, you may need to know the actual path where your files reside.

DevX - Software Development Resource

Why void& Type is Illegal

A reference is always bound to an object. In fact, you can think of a reference variable as an alias of its bound object. However, void& is not bound to

DevX - Software Development Resource

Obtaining a File Path From a Class Name

You can use a basic class finder utility to find the actual class file from a class. You can use the complete utility to locate a class file (or any

DevX - Software Development Resource

Customize Your FTP Welcome Message

It’s fairly simple to customize the welcome message on your IIS/Windows NT FTP server. Welcome messages can contain directory information, usage guidelines, unauthorized access warnings, server news, and other useful

DevX - Software Development Resource

Use Includes in Your Active Server Pages

Use the #INCLUDE statement in your Active Server Pages (ASP) to utilize common code throughout your Web site. An Include file can contain client-side script, HTML or ASP. By coding

DevX - Software Development Resource

Refreshing the Data Grid for Different Parameters

Question: I am using Visual Basic 6 and have a data grid referencing the Data environment command with a parameter. The grid won’t refresh to allow for different parameters. The

DevX - Software Development Resource

Background Image Tiling With CSS

Cascading Style Sheets allow developers to exercise greater control over background images on the Web. You can make an image tile vertically across the page, horizontally across the page, or

DevX - Software Development Resource

Designating Disabled Icons

To show when an icon button is disabled, you need to have a less prominent version of the icon’s image. The following class reduces the alpha component of each color

DevX - Software Development Resource

Put a JTabbedPane on a Tab of a JTabbedPane

Question: I want to put a JTabbedPane on a tab of another JTabbedPane for using it as a chapter with different sections below it. How can I do this? Answer:

DevX - Software Development Resource

Resource Bundles and Graphics

Question: Is it possible to load icons and other graphics into an application using a resource bundle? Answer: Resource bundles are intended to provide locale-specific resources so an application can

DevX - Software Development Resource

Using Expandable Outlines in Netscape

Question: I’ve written a page that uses expandable outlines using the display property of SPAN objects and it works fine in Internet Explorer 4. However, Netscape does not seem to

DevX - Software Development Resource

Trouble With String That Contains a Backslash

Question: I get a string from the Microsoft Index Server like this: “Information uber”. If I try to assign this string to a variable I get a runtime error: “Invalid

DevX - Software Development Resource

Compute Credit Card Check Digits

The last digit in your credit card number is a check digit derived from the other digits using the Luhn Formula as described in ISO/IEC 7812-1:1993. Its primary purpose is

DevX - Software Development Resource

Include Code for Debugging

VB supports conditional compilation, just like Visual C++. However, Visual C++ has a predefined constant named _DEBUG that makes it easy to include code only while debugging, as in this