(* HintPanel V1.0
 Note: This is freeware you may do what you like with it, but not to sell it for
 for a profit. If you have any questions please email me at Hiq2q@aol.com
 Creator: F. Joe Darley

Description:
 This Hint panel is used to display a myriad of font styles, colors, font effects,
 and display effects to the hints of your application(s). Note this component
 will be displayed on your samples pallet in your Delphi's IDE.  This Component
 is Delphi 3.x and 4.x compatable.

Properties:
  Duration: (is a long integer property) This property is used to tell the
    Hint Panel how long to display the Hint in milliseconds 2000 is the default
    Which is 2 seconds.
  ShowComponentHint: (is a Boolean property) This property is used to tell the
    Hint Panel to display the Hint of a control.

Method:
  Display:(This Method uses an object parameter). This method is used to have the
     Hint panel to gain access of the controls Hint and to display it.
     Example.

      Procedure TForm1.Button1Enter (Sender: TObject);
      Begin
         HintPanel1.Display (sender);
      End;

*)