テキストボックスに許可されている期間を制限する方法を誰かが知っているかどうか尋ねたい. C# Visual Studio 2010 を使用しています。
私の問題は、ユーザーのテキストボックスのミドルイニシャルに単一のピリオドのみが許可されることを保証する検証コードを見つける必要があることです。ユーザーが別のピリオドを入力すると、そのピリオドはテキスト ボックスに表示されません。エラー メッセージは必要ありません。例は、文字のみを受け入れる検証コードです。この例のコードは次のとおりです。
private void txtFirstName_KeyPress(object sender, KeyPressEventArgs e)
{
byte num = Convert.ToByte(e.KeyChar);
if ((num >= 65 && num <= 90) || (num >= 97 && num <= 122) || (num == 8) || (num == 32))
{
}
else if (num == 13)
{
e.Handled = true;
SendKeys.Send("{Tab}");
}
else
{
e.Handled = true;
}
}
現在、txtboxMI には次のコードがあります。
private void txtMI_KeyPress(object sender, KeyPressEventArgs e)
{
byte num = Convert.ToByte(e.KeyChar);
if ((num >= 65 && num <= 90) || (num >= 97 && num <= 122) || (num == 8) || (num == 32))
{
}
else if (num == 13)
{
e.Handled = true;
SendKeys.Send("{Tab}");
}
else
{
e.Handled = true;
}
}