Mega Code Archive

 
Categories / Delphi / Forms
 

How to flash the modal window title when user clicks the parent form

Title: How to flash the modal window title when user clicks the parent form type TFrmBase = class(TForm) protected procedure CreateParams(var Para: TCreateParams); override; {....} end; {.....} implementation procedure TFrmBase.CreateParams(var Para: TCreateParams); begin inherited; Para.WndParent := GetActiveWindow; end;