Delphi controls

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Delphi controls

Any Delphi control can be embedded to HTML using <control> tag.

First, its should be registered using RegisterClasses procedure, i.e.

 

RegisterClasses([TMemo])

 

Using in HTML:

 

<control type="TMemo"></control> 

 

propertied can be set using control tag attributes or Delphi object notation (used in DFM):

 

<control type="TMemo">
  object

  .... 
  end
</control>