TAdvEdit - trigger validate on return

Hi, would it be possible to add something like a "ValidateOnReturn" property to TAdvEdit so that when the user hits return the OnValueValidate event is called? This would be similar to "ReturnIsTab" except that I don't want to leave the control. I know I can do this with the key down event but I have a lot of controls like this so a property would be better than an event handler. Thanks.

Perhaps you can detect the return key from OnKeyDown() and from there call AdvEdit.Validate?

Yes that's what I'm doing now, thx.