S
studying
Unregistered / Unconfirmed
GUEST, unregistred user!
用ComboBox,当用户输入时,想做到只允许大写字母和下划线,
在ComboBox的 OnKeyUp 里这样写:
if not (key in ['A'..'Z','_']) then
ShowMessage('请使用大写字母和下划线.');
错误提示: Word 和 Char 不兼容.
我该怎么改? OnKeyUp里的 Key究竟该怎么用?
在ComboBox的 OnKeyUp 里这样写:
if not (key in ['A'..'Z','_']) then
ShowMessage('请使用大写字母和下划线.');
错误提示: Word 和 Char 不兼容.
我该怎么改? OnKeyUp里的 Key究竟该怎么用?