devxlogo

Tip Bank

DevX - Software Development Resource

Register ActiveX Components Manually

Not all ActiveX DLL and OCX files include installation programs to properly register the control. You need to run REGSVR32.EXE manually to perform the registration. You can save time by

DevX - Software Development Resource

Destroying Collections’ Items

Many programmers mistakenly believe they can remove all the items from a collection by setting the collection itself to Nothing: Dim children as New Collection…Set children = Nothing This technique

DevX - Software Development Resource

Writing to Paradox Tables With Delphi

Question: I am unable to post records permanently to Paradox tables using Delphi 3. The records appear in the table object but disappear after I exit Delphi and start another

DevX - Software Development Resource

Win API

Question: Is there a way under Delphi 3 and 4 to determine if a previous instance of the application is already running? Answer: Yes, there is a way to determine

DevX - Software Development Resource

ASP InterDev problem with filter

Question: Hello from France,I’m on Windows NT4.0 with SQL Server 6.5and Visual Interdev. I use the DataForm wizard to connect to a data base. When I’m on the xxxxlist.asp with

DevX - Software Development Resource

Radio Button

Question: How can I make the contents of a table change when the user selects a different radio button? Just like “Button” input type has an event called “onClick,” is