Gini
August 30th, 2001, 09:58 AM
I have to create a message box that only responds to a mouse click on the command button; if the user presses the enter key, it shouldn't answer the command button. Can anyone help?
|
Click to See Complete Forum and Search --> : Disable Enter Key on Command Button Gini August 30th, 2001, 09:58 AM I have to create a message box that only responds to a mouse click on the command button; if the user presses the enter key, it shouldn't answer the command button. Can anyone help? berta August 30th, 2001, 10:09 AM private Sub Command1_KeyDown(KeyCode as Integer, Shift as Integer) 'vbkeyenter=13 if keycode=vbkeyenter then keycode=0 End Sub <center> <HR width=80%> <img src='http://web.tiscali.it/bertaplanet/images/bertaplanet.gif'> </center> codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |