Results 1 to 3 of 3

Thread: Enter Key Beep

  1. #1
    Robcrowell
    Guest

    Arrow Enter Beeps

    I have a program that uses a textbox to enter data, and whenever the user presses the enter key it automatically does a system beep. Does anyone know why, and do you know how i could fix this?

  2. #2
    PowerPoster Lethal's Avatar
    Join Date
    Oct 2000
    Location
    Ohio
    Posts
    2,496
    I'm assuming you have some code in your text boxe's keypress event. Right or Wrong? If so, at the end, after your other code, throw this in

    Private Sub Text1_KeyPress(KeyAscii as Integer)
    ' Your code
    KeyAscii = 0
    End Sub

  3. #3
    Guest

    Thanks

    Worked perfectly. Thanks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width