Results 1 to 3 of 3

Thread: Keyboard

  1. #1
    Aerobicia
    Guest

    Question Keyboard

    I have a form with a few Textbox and I want the user to move from textbox to textbox with Enter and that works BUT I don't want the Beep it generate! Can I remove it somehow? With API?

    Help

  2. #2
    Matthew Gates
    Guest
    Try adding this:


    VB Code:
    1. Private Sub Text1_KeyPress(KeyAscii As Integer)
    2.     If KeyAscii = vbKeyReturn Then
    3.         Text2.SetFocus
    4.         KeyAscii = 0
    5.     End If
    6. End Sub

  3. #3
    Aerobicia
    Guest
    Thank's! That did it! You have saved my day )

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