F1 with SkinManager

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #56247
    Lauri
    Participant

    It's done! Must use the HTMLHelpViewer! :a1:

    #56273
    Support
    Keymaster

    If you need to avoid this system calling of context help, you can catch the WM_HELP message and handle it by your self.

    For example, add this procedure to your form public part:

    Code:
    procedure WndProc(var Message: TMessage); override;

    procedure TForm10.WndProc(var Message: TMessage);
    begin
    case Message.Msg of
    WM_HELP: Exit;
    end;
    inherited;
    end;

    And “TForm10.FormKeyDown” procedure will not be called while Form10.KeyPreview property is False.

    I hope, it helps.

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.