I am seeking a method to detect if ASCII Control Characters are pressed. My code currently shown here is not working too well i suspect.

Code:
 
private void Transmitted_KeyDown(object sender, KeyEventArgs e)
{
          if (e.Modifiers==Keys.Control)
           {
               test = (char)e.KeyCode;              
           }
}