Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Raet

  1. Raet

    Edit number control

    The easiest way is to write an OnKeyDown-event for the edit control like: void __fastcall TAdminForm::EdAantalKeyDown(TObject *Sender, WORD &Key, TShiftState Shift) { //Only numeric, enter en backspace are allowed if ((char)Key == 8 || (char)Key == 13) return; if...

Part and Inventory Search

Back
Top