• Recent Posts

  • Meta

  • Tags

    #ziplib .net getfilename .net no titlebar 7-zip adding a splash screen in visual basic.net adding textbox autocomplete addition adjusttokenprivileges adware application filename application position applications path audio library autocomplete autocomplete combobox avi mpg basic math bass.dll bass sound system beep benchmark data calculator cdrom tray change unix to windows directory exists disable beep on enter doevents excel file exists getinputstate high cpu usage linq mcisendstring no doevents open webpage pinging play mp3 play wave scroll textbox shell stop beep on enter textbox vb ping visual studio windows mci
  • Disable that Beep while pressing the “Enter/Return” key in a Textbox VB5/6

    Tuesday, September 11th, 2007

        'VB 5.0/6.0 'Copy and Paste this code in your Textbox_KeyPress() event.          If KeyAscii = 13 Then              KeyAscii = 0           End If    

    Disable ‘Beep’ in Textbox control when pressing the ‘Enter’ Key – .NET 05/08 [Method #1]

    Monday, June 18th, 2007

          'This code will disable the 'Beeping' you get when you press the 'Enter' key in a Textbox control. This code needs to go into the Textbox_KeyDown' event.     If e.KeyCode = Keys.Enter Then        e.SuppressKeyPress = True    End If