Several compile time options are controlled by defining symbols. You can find these in the HTMLCONS.INC file. Most of these symbols are initially not defined. To make any one (or all) of these symbols active, remove the "." from the {$.Define XXXX} sequence and recompile the code.
The GdiPlus.dll provides support for PNG, TIFF, JPEG, ICO, EMF, WMF, EXIF, and BMP images.
Defining NoGdiPlus will remove support for TIFF, ICO, EMF, WMF, and EXIF images entirely. If the GdiPlus.dll is not present or NoGdiPlus is defined most images will still be displayed but less nice than with GdiPlus.dll. Complied with NoGdiPlus by Delphi does not support PNG images.
The GdiPlus.dll is present on all WinXP systems and has often been loaded on other systems by other applications. If it is not present on your system, it can be downloaded (at no charge) at http://www.microsoft.com/downloads/.
Metafile display and some printing operations are incompatible with Win95/98/ME. For applications running on these systems define NoMetaFile
To eliminate tabbing between links, define NoTabLink. For documents with hundreds of links, tabbing may not be desirable and also may cause delays in loading. Even when NoTabLink is not defined, there is another constant, MaxTab, which eliminates tabbing to MaxTab links. MaxTab is defined in readhtml.pas
if you have a form with a great many radio buttons, you may want to define FastRadio to help speed the action. Note that this option changes the way tabbing works. With FastRadio off, tabs move only to the next control that is visible. With FastRadio on, tabs move to the next control even if it is not visible.
Quirks mode makes changes which simulate some of the quirks of other browsers. The HTML components now support a property QuirksMode that replaces and enhances the previous compiler symbol.
Without this definition, the <select> form controls (TListbox and TCombobox) will issue the OnObjectChange event only when the control loses the focus which is according to HTML specs. Defining OpOnChange simulates the way IExplorer does it, issuing the OnChange event immediately when a change is made.
A Mouseover Image is one that changes when the mouse passes over it. The HTML components use a special syntax to implement mouseover images. It's done with the <img> tag as follows:
the SRC="..." attribute should specify an animated GIF image
Add an Active attribute
With the Active attribute, the GIF will normally just display the first frame. When the mouse passes over or is clicked, it will display the second or third frame respecively if there are 2 or 3 frames or will animate if there are more than 3 frames.
Defining UseGlobalObjectId gives each HTML element an application wide unique ID even if there is no ID or NAME attribute given in the HTML document. The unique ID is composed of 'GOID-' and a consecutive number starting with 1
Style types have been renamed to Tht.. to meet the Delphi style guide that types should start with a 'T'. As long as you did not change your code accordingly you can define UseOldStyleTypes.