Thava's Software Blog
This blog is most useful for Software Engineers, Database Administrators, QA and etc.
Jun 23, 2008
Writing to EventLog - csharp
//Add to the textbox's KeyPress event
private void txtBox_KeyPress(object sender, KeyPressEventArgs e)
{
if (!System.Text.RegularExpressions.Regex.IsMatch(e.KeyChar.ToString(), "\\d+"))
e.Handled = true;
}
Newer Post
Older Post
Home