Tip Bank

DevX - Software Development Resource

Using Firefox’s JavaScript Console

When a JavaScript error occurs in IE, it shows a popup message asking whether you want to continue the script (if you’ve disabled this popup window, the error notification shows

DevX - Software Development Resource

Graphical Tools for MSDE

Microsoft’s small-footprint SQL Server-compatible MSDE database (now replaced by as SQL Server Express) does not include graphical tools. That makes manipulating database objects difficult, or at least irritating. However, there

DevX - Software Development Resource

Create Two-Dimensional Arrays in the Heap

This code demonstrates how to create two-dimensional arrays in the heap: // Returns a pointer-to-pointer to a newly created array// of size [row : col].int **Create2D(int row, int col){ int

DevX - Software Development Resource

Force Attribute Value Inheritance in XSL-FO

To force an XSL-FO attribute to inherit the value of another attribute, use the inherited-property-value: &ltfo:block color=”blue”> Hello to you!!! The idea is that the “Hello” foreground will be blue

DevX - Software Development Resource

Obtain a Secure PDF from an FOP Processor

This tip shows you how to obtain a secure PDF from an FOP processor. This means the user can’t open the PDF without a user password and, once downloaded, cannot

DevX - Software Development Resource

How to Draw a Spiral in VB

Using a loop and the mathematical formula for a spiral, you can use pset(x,y) to plot the points returned by the formulas. The variables a and b determine the shape