S
skyjacker
Unregistered / Unconfirmed
GUEST, unregistred user!
如何限制一个工程中所有的Tedit控件输入某几个特殊字符。比如单引号。
if (Key in ['''']) then
Key := #0;
如何不用在每一个Tedit控件的keypress下加入,而统一处理?
if (Key in ['''']) then
Key := #0;
如何不用在每一个Tedit控件的keypress下加入,而统一处理?