Advertisement
RibaSoft

Suspender Evento Temporariamente

Jan 3rd, 2023 (edited)
1,597
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Delphi 0.25 KB | None | 0 0
  1. var
  2.   auxProc: TNotifyEvent;
  3. begin
  4.   //Armazena o evento na variável
  5.   auxProc := btnEnter.OnClick;
  6.   //Limpa o Evento
  7.   btnEnter.OnClick:= nil;
  8.   ...................
  9.   ...................
  10.   //Restaura o Evento
  11.   btnEnter.onClick := auxProc;
  12. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement