The Latest

DevX - Software Development Resource

Don’t Forget That Mouse Pointer

If you turn the mouse pointer into an hourglass (and back to normal) in a routine with error handling, don’t forget to turn the mouse pointer back to normal in

DevX - Software Development Resource

Add A:hover to Visual InterDev 6 Style Sheets

The Visual InterDev 6 Style Sheet editor is confusing about the tags that can be edited. For example, the A:hover style is missing from the list of tags. A:hover is

DevX - Software Development Resource

Dynamic Array Allocation

Java does not offer arrays that can be extended at run time, for primitives or Objects, so it is common to use a Vector for a set of elements that

DevX - Software Development Resource

ADO connection to an mdb database fails

Question: Summary of the problem: Connecting directly to a Microsoft Access database from a Web project developed in Interdev 6.0 fails unless I modify every .Open to use a connection

DevX - Software Development Resource

Need a simple script

Question: I need the following simple script. Visitors should be able to enter their e-mail address in a form on my site and the address should be put in a

DevX - Software Development Resource

ASP & ActiveX

Question: I have an ActiveX (MyKalender.ocx) and I know the ClassID of, I included it to an ASP-File -> I can see it but how can I get information about

DevX - Software Development Resource

Ad rotator logging

Question: I have built an ASP-based banner system using the Ad Rotator component. How can I log this information into a database (prefer) and retrieve the number of impressions and

DevX - Software Development Resource

Dynamic Includes

Question: How can I do a dynamic include, such as:However, I think I know why this doesn’t work– because includes are tossed in before it goes to the parser (asp.dll).

DevX - Software Development Resource

Use a Selfmade ActiveX-DLL on an ASP

Question: I’ve made an ActiveX-DLL using VB6 with one public and several private functions.How can I use (and call) the public function from an Active Server Page?? Answer: Invoke your

DevX - Software Development Resource

File Upload using VBScript

Question: I would like to ask about uploading a file using HTML. I have the code, but the problem is that I can not receive and save the file that

DevX - Software Development Resource

Using #Include in htm pages

Question: I have a .htm file in which I have the following line of code: The htm pages are both part of my VI6 project.The file IncludeLeftPanel.htm contains only simple

DevX - Software Development Resource

Executing an ASP page from a VB App

Question: I have an ASP file residing on a Web server. Is there any way that I can execute this file from within my VB application? This should be similar

DevX - Software Development Resource

Highlight HTML Text With BACKGROUND-COLOR

On the printed page, people are accustomed to seeing portions that have been marked by a highlighter–you can achieve the same effect with HTML highlight text on your Web page

DevX - Software Development Resource

Use Command Lines for MTS Operations in NT Systems

If you’re using Microsoft Transaction Server technology, opening up MTS explorer and using refresh is an overhead on the system compared to command line options. Instead, you can use “mtxstop”,

DevX - Software Development Resource

Forms Not Showing Up in Taskbar

In VB3 you can set up an executable project to start up in the main subroutine, and it shows up in the Windows 95 taskbar: Public Sub Main() Load frmFoo

DevX - Software Development Resource

Form-Level Variables Won’t Clear

When you use multiple forms in a project, make sure you explicitly set a form to Nothing after you unload it. If you don’t, simply unloading the form won’t necessarily

DevX - Software Development Resource

Overloading the Subscript Operator the Right Way

It is customary to overload the subscript operator, [], in classes that hold a sequence of elements. Vector and String are examples of such classes. When you overload operator [],

DevX - Software Development Resource

Use Refresh, Not DoEvents

When executing code and tying up the system, developers often use a label or status bar to display messages. If you simply assign your text or message to the control

DevX - Software Development Resource

Be Careful When Mimicking Tool-Tip Help

Be careful about tips to easily duplicate tool-tip help with only tip control and mouse events. If your “tip” control doesn’t have the same parent as the control you’re moving

DevX - Software Development Resource

Put Your Check-Box Value Into Your Database

Jeremy Boschen pointed out an easy way to load a Boolean into a check-box control in the tip, “Use Boolean Variables for Check-Box Values” [101 Tech Tips for VB Developers,