TWebMaskEdit - OnChange-Event

The OnChange-Event of TWebMaskEdit wouldn't be called when I make changes. Bug oder Feature? If Feature - what is to do to get the korrekt event.?

Hi Liisa,

It works fine when I tested it.

procedure TForm1.WebMaskEdit1Change(Sender: TObject);
begin
  ShowMessage('OnChange is being called!');
end;

And if I type something inside the edit box, I immediately see the message on the screen.