whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

50 Visitors Online


 
..,show my own help dialog when user clicks the biHelp border icon?
Autor: P. Below
Homepage: http://www.teamb.com
[ Print tip ]  

Tip Rating (7):  
     


type
  
TForm1 = class(TForm)
  private
    procedure 
wmNCLButtonDown(var Msg: TWMNCLButtonDown); message WM_NCLBUTTONDOWN;
    procedure wmNCLButtonUp(var Msg: TWMNCLButtonUp); message WM_NCLBUTTONUP;
  end;

var
  
Form1: TForm1;

implementation

{$R *.DFM}

procedure TForm1.wmNCLButtonDown(var Msg: TWMNCLButtonDown);
begin
  if 
Msg.HitTest = HTHELP then
  begin
    
Msg.Result := 0; // swallow mouse down on biHelp border icon
  
end
  else
    inherited
;
end;

procedure TForm1.wmNCLButtonUp(var Msg: TWMNCLButtonUp);
begin
  if 
Msg.HitTest = HTHELP then
  begin
    
Msg.Result := 0;
    ShowMessage('Hi!'); // Show your help here
  
end
  else
    inherited
;
end;


 

Rate this tip:

poor
very good


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners