i hope that what i'm doing now it will not be against the forum rules.
anyway, we are here te help and get helped.
you will find a free component at this address:
http://delphi.about.com/library/week.../src070603.zip
you can browse through source and find out how the tedit component is overloaded, and how to input only digits.
if there is against to post other links(here i will ask the moderators to delete the link), then i suggest you to look in delphi's help section at tedit component, onkeydown event.
type
TKeyEvent = procedure (Sender: TObject; var Key: Word; Shift: TShiftState
) of object;
property OnKeyDown: TKeyEvent;
here you can manage the input caracters. also be aware at special inputs(enter, esc, etc).
best regards,