回车时的叮当声

Ding sound on pressing Enter

我曾经写过这段代码

if(Edit1->Text != "" && Key == VK_RETURN){
 Edit1->Text = Edit1->Text.Trim();
 Edit2->SetFocus();
} 

在我使用 C++ 构建器 Xe6 之前,它工作得很好。每次我按 Enter 按钮时都会发出叮当声。 有帮助吗?

哔声是您 IDE 上的默认行为。尝试:

if(Edit1->Text != "" && Key == VK_RETURN){
    Key=0;
    Edit1->Text = Edit1->Text.Trim();
    Edit2->SetFocus();
} 

替代解决方案: How to turn off beeping when pressing ENTER on a single-line EDIT control under Windows CE?