Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
CODE PROJECT For Those Who Code
  • Home
  • Articles
  • FAQ
Community
  1. Home
  2. Web Development
  3. ASP.NET
  4. How to disable a KeyBoard???????????

How to disable a KeyBoard???????????

Scheduled Pinned Locked Moved ASP.NET
tutorialquestion
4 Posts 4 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • S Offline
    S Offline
    subrat12345
    wrote on last edited by
    #1

    Hi All, i am developping a web application. in some pages only mouse should work. key board should not work at all... i can not able disable start key?? please any body suggest me what to do..........

    V V N 3 Replies Last reply
    0
    • S subrat12345

      Hi All, i am developping a web application. in some pages only mouse should work. key board should not work at all... i can not able disable start key?? please any body suggest me what to do..........

      V Offline
      V Offline
      Vimalsoft Pty Ltd
      wrote on last edited by
      #2

      Learn to Google before you Post http://www.google.co.za/search?hl=en&q=How+to+disable+a+KeyBoard+in+ASP.NET&meta=[^]

      Vuyiswa Maseko, Sorrow is Better than Laughter, it may Sadden your Face, but It sharpens your Understanding VB.NET/SQL7/2000/2005 http://vuyiswamb.007ihost.com http://Ecadre.007ihost.com vuyiswam@tshwane.gov.za

      1 Reply Last reply
      0
      • S subrat12345

        Hi All, i am developping a web application. in some pages only mouse should work. key board should not work at all... i can not able disable start key?? please any body suggest me what to do..........

        V Offline
        V Offline
        Venkat Eswaran
        wrote on last edited by
        #3

        Disable all controls on that page. simple solution

        Venky

        1 Reply Last reply
        0
        • S subrat12345

          Hi All, i am developping a web application. in some pages only mouse should work. key board should not work at all... i can not able disable start key?? please any body suggest me what to do..........

          N Offline
          N Offline
          nelsonpaixao
          wrote on last edited by
          #4

          you may want to do the bellow. There only enable 0 to 9 and the backspace. you may do your own coding

          private void ToolStripTextBox_CurrentRow_KeyPress(object sender, KeyPressEventArgs e)
          {
          if ((e.KeyChar < 48) || (e.KeyChar > 57))
          e.Handled = true;
          if (e.KeyChar == 8)
          e.Handled = false;
          }

          :~

          nelsonpaixao@yahoo.com.br trying to help & get help

          1 Reply Last reply
          0
          Reply
          • Reply as topic
          Log in to reply
          • Oldest to Newest
          • Newest to Oldest
          • Most Votes


          • Login

          • Don't have an account? Register

          • Login or register to search.
          • First post
            Last post
          0
          • Categories
          • Recent
          • Tags
          • Popular
          • World
          • Users
          • Groups