TFrxEditControl Only Numbers
Hi Everyone,
I have a Dialog with some controls, I have a TFrxEditControl, but I need that it allow only numbers
In Delphi, a TEdit has a property "NumbersOnly", I can too handle it with OnKeyPress event handler
I can't use Abort in FR
How I can set the TFrxEditController to allow only numbers???? thanks a lot
I have a Dialog with some controls, I have a TFrxEditControl, but I need that it allow only numbers
In Delphi, a TEdit has a property "NumbersOnly", I can too handle it with OnKeyPress event handler
if not CharInSet (Key, ['0'..'9']) then
  Abort;
I can't use Abort in FR
How I can set the TFrxEditController to allow only numbers???? thanks a lot
Comments
thanks @gpi it works fine