Essayez ce code
TForm1 = class(TForm)
---
---
private
{ Private declarations }
wcActive, wcPrevious : TWinControl;
public
{ Public declarations }
procedure ActiveControlChanged(Sender: TObject) ;
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.ActiveControlChanged(Sender: TObject);
begin
wcPrevious := wcActive;
wcActive := Form1.ActiveControl;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
Screen.OnActiveControlChange := ActiveControlChanged;
end;
procedure TForm1.FormDestroy(Sender: TObject);
begin
Screen.OnActiveControlChange := nil;
end;
Utilisez wcControl.Name
pour obtenir le nom du contrôle précédent
Pour plus d'informations passent par this link
Merci Bharat I manqué cette logique simple –