Prev: public ip address
Next: debug smartdeviceproject
From: annamalai on 21 Jan 2010 06:23 nice info, i have a similar problem, the function Key F4 is assigned as Shortcut to a Child Form from MDI Parent Form, While pressing F4 in ComboBox in a DataGridView instead of showing the Combo box drop down list, the Child Form was Activated. waiting for some ideas regards Annamalai surtur wrote: RE: override function Key F4 08-Jan-08 Suppress the keystroke in the ComboBox's KeyDown event: Private Sub ComboBox1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles ComboBox1.KeyDown If e.KeyCode = Keys.F4 Then e.SuppressKeyPress = True Exit Sub End If End Sub Previous Posts In This Thread: On Monday, January 07, 2008 11:36 PM win wrote: override function Key F4 My form has a dropdown combox and function key "F4" is used for save information. When I press "F4", the combox display the options and then exec. save coding. Can I skip the display options of the combox? Thanks a lot On Tuesday, January 08, 2008 12:44 AM surtur wrote: RE: override function Key F4 Suppress the keystroke in the ComboBox's KeyDown event: Private Sub ComboBox1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles ComboBox1.KeyDown If e.KeyCode = Keys.F4 Then e.SuppressKeyPress = True Exit Sub End If End Sub On Tuesday, January 08, 2008 8:54 PM win wrote: Re: override function Key F4 Thanks a lot Submitted via EggHeadCafe - Software Developer Portal of Choice C# Threading Http Requests http://www.eggheadcafe.com/tutorials/aspnet/985b1bd6-3dee-48ce-8769-7010659bd748/c-threading-http-request.aspx
|
Pages: 1 Prev: public ip address Next: debug smartdeviceproject |