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. General Programming
  3. C#
  4. using the KeyEventArgs.Handled prop

using the KeyEventArgs.Handled prop

Scheduled Pinned Locked Moved C#
question
2 Posts 2 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.
  • D Offline
    D Offline
    djkno3
    wrote on last edited by
    #1

    Bet you guys love me now huh? :laugh: How is this used MSDN says squat about it (ok not squat but it might as well be :-D). I remember reading somwhere in one of my books about it being able to tell windows you will be handling certain key presses (like the cursor keys) so it will not take over in the next hooking phase. But dammed if I can find out...

    N 1 Reply Last reply
    0
    • D djkno3

      Bet you guys love me now huh? :laugh: How is this used MSDN says squat about it (ok not squat but it might as well be :-D). I remember reading somwhere in one of my books about it being able to tell windows you will be handling certain key presses (like the cursor keys) so it will not take over in the next hooking phase. But dammed if I can find out...

      N Offline
      N Offline
      Nathan Tran
      wrote on last edited by
      #2

      Hi, This may help. For the KeyPress event of the control: private void tbMsg_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e) { if( e.KeyChar == ( char )13 ) // (char)13 is the return key. { // Tell the system that the keypress has been handled. e.Handled = true; // Do something. Here I'm simulating a button press. button1_Click( this, e ); } } Nathan.

      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