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

Setup

Question: The setup wizard gives the capability to the end user to change the directory into which the setup will copy the files. How can I prevent this? If the

DevX - Software Development Resource

Thread Timing

Question: How can I determine the total time it takes for a set of threads to execute? Answer: When you time a set of threads, you generally want to know

DevX - Software Development Resource

Dispatching Mouse Events

Question: How can I pass or send a mousedown to a choice menu when a button is pressed? Answer: Sending an event to an AWT component is as simple as

DevX - Software Development Resource

SQL fucntion calls

Question: Does SQL have a function to get only the time–rather than getDate()–which gets the date and time, or a function to get the Unix time() time. (the one that

DevX - Software Development Resource

Simple C++ Dynamic Link Library

Question: I am trying to interface VBA with a C++ DLL. I am very new to C++ programming. I understand the declarations from the VBA side, but I am having

DevX - Software Development Resource

Insert a bitmap into Word 97

Question: I’d like to get a bitmap file (c:mypic.bmp) placed on a MS Word97 file (msfile1.doc) using Powerbuilder (6.5). I am interested in printing that file afterwards. Answer: The following

DevX - Software Development Resource

Deleting a structure from disk

Question: I have written a videoshop program in C++. I need to be able to delete a video structure off the disk. At the moment, the user enters a video

DevX - Software Development Resource

Network Authentication

Question: The new java.net.Authenticator class in JDK 1.2 seems to be the answer to generalized user-authentication. Why dogetPasswordAuthentication andrequestPasswordAuthentication both return PasswordAuthentication, butrequestPasswordAuthentication requires a security check? Answer: The getPasswordAuthentication

DevX - Software Development Resource

Java 2 Compatibility

Question: Why do I have problems running some programs with Java 2? Answer: Many Java class libraries and programs written before Java 2 use a technique called obfuscation to make

DevX - Software Development Resource

Looped Exceptions

Question: Is there any way to catch exceptions repeatedly, instead of just once? For example, when creating a Date object with a String, an IllegalArgumentException can begenerated and caught. In

DevX - Software Development Resource

Phone dialer

Question: Is it possible to connect and disconnect a Microsoft phone dialer that calls my Internetservice provider from a VB program? Answer: It sure is, and VB makes it very

DevX - Software Development Resource

TreeView Control

Question: I would like to know how I can add, remove, and see if an item is in the TreeView control. For example: Prism Pros 4/30/99 7:39AM 4/30/99 8:00AMMcFarley 4/30/99

DevX - Software Development Resource

Form Load

Question: What happens in the Form Load? If I try to retrieve information from a database (using a DataControl and TextBoxes connected to the database), I can’t get the program

DevX - Software Development Resource

Canceling a call to a dll

Question: In a program, I’m calling a function in a dll. The time before that function is finished can vary from a few seconds to an hour, depending on the

DevX - Software Development Resource

How to Build an Online Help System

Question: How do I create an online help system to use in VB6? Answer: Try the HTML Help Workshop that ships with VB. It allows you to create a help

DevX - Software Development Resource

Registering DLL Files

Question: When I try to register a DLL I created in VB6, I get the message that tells me the DLL is not a valid windows NT image. At the

DevX - Software Development Resource

Maximum length of SQL

Question: Is there a maximaum length of an SQL program? I have used the query designer in Visual Foxpro 3.0 with many lines of criteria. When I try to run

DevX - Software Development Resource

MicroSoft Visual Foxpro 6.0 Grid Control

Question: I have a grid control on a form in Visual Foxpro. I want to keep it unbound and then later fill it with data. I set the recordsource property

DevX - Software Development Resource

MMX code in C++

Question: I am involved in a project the aim of which is to demonstrate the effectiveness of MMX for image manipulation. For this project I need to write some MMX

DevX - Software Development Resource

Is ‘delete this;’ a good idea?

Question: We have a use counted object with addRef() and removeRef() functions. When the reference count gets to 0, we want the object to be deleted. Is { delete this;

DevX - Software Development Resource

IRQ7 handler

Question: How can I handle in Windows an IRQ7 interrupt, generated by my own measurement device connected to parallel port? It was easy in DOS. Any generic code would be

DevX - Software Development Resource

How to Time a Set of Threads

hen you time a set of threads, you generally want to know thetime elapsed between when the first thread starts and the last threadfinishes. When you time a single thread,

DevX - Software Development Resource

Disconnected Recordsets

ne of the great and flexible features of the amazing elastic ADO recordset is that it can be disconnected from its data source, modified, and reconnected to update the data

DevX - Software Development Resource

What are Lvalues and Rvalues?

An object is a contiguous region of memory storage. An lvalue (pronounced: L value) is an expression that refers to such an object. The original definition of lvalue referred to

DevX - Software Development Resource

Loading Resources With the getResource() Method

Most nontrivial applications are packaged with “resource files,” which are nothing more than files used by the application for various purposes. Some examples of these resources include image (GIF, JPEG)

DevX - Software Development Resource

Fast String Array Load and Save

VB6 offers a couple new string functions that work with string arrays. One of these new string functions, Join, concatenates all the items of an array into an individual string

DevX - Software Development Resource

Yet Another Wrinkle in BCP

It is now easy to create scripts using the functionality in T-SQL to automate the loading of data into SQL Server with the addition of the bulk insert command in