Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 129359
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T05:46:42+00:00 2026-05-11T05:46:42+00:00

I am using C#.Net. I have textbox which allow only number, decimal and percentage(%)

  • 0

I am using C#.Net. I have textbox which allow only number, decimal and percentage(%) sign. I have the keycode for all number and decimal, but what is the ‘%’ sign’s keycode?

How can I check the keydown event for %?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T05:46:42+00:00Added an answer on May 11, 2026 at 5:46 am

    Something like this:

    private void yourControl_KeyDown(object sender, KeyEventArgs e) {    if((e.KeyCode == Keys.D5) && e.Shift)    {       // User pressed '%' ...    } } 

    or

    private void yourControl_KeyDown(object sender, KeyEventArgs e) {     switch(e.KeyCode)     {         //...          case Keys.D5:             if(e.Shift)             {                 // Handle '%'             }             else             {                 // Handle '5'             }             break;         // ...     } } 

    You want to check that the key being pressed is the 5 key, and that it has been modified by pressing the shift key.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm using system.net.mail and have a textbox that users can enter their email address
I'm using asp.net/c# and have a number of Collapsible Panel Extenders that have been
I'm using .NET 3.5. I have two string arrays, which may share one or
How can I modify the PDF document properties programmatically using .NET code? I have
I have many TextBOX in asp.net which accepts the value from user and stores
I have searched, but nothing happens, I just starting using C#.NET and I a
I am using the default asp.net MVC 2 syntax to construct TextBox's which are
I am using RequiredFieldValidator in my asp.net program. I have a sign out button
Using the .net framework you have the option to create temporary files with Path.GetTempFileName();
Using .NET 1.1, I have a DataGrid that contains three columns for each row.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.