C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Textbox only accepting numbers in C# windows application.
WhatsApp
Niradhip Chakraborty
13y
69.3
k
0
0
25
Blog
private
void
txtZip_KeyPress(
object
sender, KeyPressEventArgs e)
{
if
(
char
.IsDigit(e.KeyChar) ||
char
.IsControl(e.KeyChar))
{
e.Handled =
false
;
}
else
{
e.Handled =
true
;
}
}
People also reading
Membership not found