[Lazarus] I can't exit this component
Werner Pamler
werner.pamler at freenet.de
Fri Mar 29 13:03:27 CET 2024
Am 29.03.2024 um 12:09 schrieb Arí Ricardo Ody via lazarus:
> procedure TfrmGeraString.tedtNomArqMicEnter(Sender: TObject);
The "Enter" in this method name indicates that you assigned the event
handler to the OnEnter event of something (a button maybe). This means
that whenever the mouse is moved over this button ("enter") the event
fires. Usuall dialogs are displayed only when a "click" occurs, and this
responsibility is in the OnClick event of the button.
More information about the lazarus
mailing list