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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How can I get rid of annoying sounds when Up arrow key is pressed?

Status
Not open for further replies.

alex14

Programmer
Apr 5, 2002
10
0
0
UA
How can I get rid of annoying sounds when Up or Down arrow key
is pressed in CRichEditCtrl derived control?

I overrided OnGetDlgCode in my CRichEditCtrl derived class. It looks:

UINT CInputRichEdit::OnGetDlgCode()
{
return DLGC_WANTARROWS|DLGC_WANTALLKEYS|DLGC_WANTCHARS|DLGC_WANTMESSAGE;

}

But annoying sounds still occur when Up or Down arrow key is pressed.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top