D
Dan K.
Hi Folks,
Problem is, that on one of my controls the DEL key wont work in
textboxes. i have different controls of this kind in my app and this
is the only one the DEL Key wont do his job. BACKSPACE and rightclick
menu delete works either. seems the DEL Key fires no event ... i
insert following code in my project to check this. no mehthod call if
DEL key hit ... any solution or idea for this problem ?
cant say ... users on this tabcontrol you cant use DEL if it works in
all other parts
private void OnKeyDown(object sender,KeyEventArgs AArgs)
{
base.OnKeyDown(AArgs);
System.Windows.Forms.Keys LKey =
System.Windows.Forms.Keys.KeyCode &
AArgs.KeyCode;
switch (LKey)
{
case System.Windows.Forms.Keys.Delete :
MessageBox.Show("DEL Key!");
break;
}
}
Problem is, that on one of my controls the DEL key wont work in
textboxes. i have different controls of this kind in my app and this
is the only one the DEL Key wont do his job. BACKSPACE and rightclick
menu delete works either. seems the DEL Key fires no event ... i
insert following code in my project to check this. no mehthod call if
DEL key hit ... any solution or idea for this problem ?
cant say ... users on this tabcontrol you cant use DEL if it works in
all other parts

private void OnKeyDown(object sender,KeyEventArgs AArgs)
{
base.OnKeyDown(AArgs);
System.Windows.Forms.Keys LKey =
System.Windows.Forms.Keys.KeyCode &
AArgs.KeyCode;
switch (LKey)
{
case System.Windows.Forms.Keys.Delete :
MessageBox.Show("DEL Key!");
break;
}
}