Show/Hide Toolbars

RiverSoftAVG Products Help

Provides a controllable popup hint window, which can be embedded in VCL components. It allows control of when and where the popup hint window appears and also has the timing information embedded within it (so that it can automatically disappear after a certain time period).

To use the TRSHintWindow component, you need to perform two (or optionally three) steps:

Create the TRSHintWindow component inside your component
 

Call the ActivateHint method when you want to show the popup hint window

Call the HideHint method when you want to hide the popup hint window

Namespace: RSHintWindow

Call the ActivateHint method when you want to show the popup hint window:

Delphi

procedure TMyControl.MouseMove(Shift: TShiftState; X,
   Y: Integer);
 begin
      if ShowHintWindow then
      begin
        HintWindow.ActivateHint( ClientToScreen(Point(X, Y)), AHint);
      end;
      inherited MouseMove(Shift, X, Y);
 end;

Call the HideHint method when you want to hide the popup hint window:

Delphi

procedure TMyControl.MouseMove(Shift: TShiftState; X,
   Y: Integer);
 begin
      if ShowHintWindow then
      begin
        HintWindow.ActivateHint( ClientToScreen(Point(X, Y)), AHint);
      end
      else
        HintWindow.HideHint;
      inherited MouseMove(Shift, X, Y);
 end;

RiverSoftAVG Products Help © 1996-2016 Thomas G. Grubb