private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
        {
            if (e.KeyChar == (char)13)
            {
                e.Handled = true;
                client.SendMsg("[ASG]훗남", textBox1.Text);
            }
        }


Handled 를 true 로 하면 엔터쳤을때 beep 음이 안나게 된다.
Posted by 휘사마
,