Combobox KeyDown event handler firing multiple times - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T19:04:42Zhttp://stackoverflow.com/feeds/question/350832http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/350832/combobox-keydown-event-handler-firing-multiple-times0Combobox KeyDown event handler firing multiple timesproudgeekdad2008-12-08T20:45:58Z2008-12-08T22:25:36Z
<p>In VB.NET, I have a Combobox on a WinForm form. The form allows the user to type in a query to be searched. When the user hits the Enter key, a query is performed against the database and the results are returned as a DataTable. The DataTable is then bound to the Combobox and the user can select the option that they are looking for.</p>
<p>For the most part, this is working great. However, we've discovered that the code is executing multiple times. If I write my query out and hit the Enter key ONCE, I can step through the code TWO or THREE times. I don't want to send the same query to the database multiple times if I do not have to. Any ideas or suggestions why the code would be executing multiple times?</p>
<p>Here is the code in question. The Combobox and Function names have been changed to protect the innocent. :) </p>
<pre><code>Private Sub cbx_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles cbx.KeyDown
Me.Cursor = Cursors.IBeam
If e.KeyData = Keys.Enter Then
Me.Cursor = Cursors.WaitCursor
PerformSearch()
Me.Cursor = Cursors.Default
End If
Me.Cursor = Cursors.Default
End Sub
</code></pre>
http://stackoverflow.com/questions/350832/combobox-keydown-event-handler-firing-multiple-times/351169#3511691Answer by proudgeekdad for Combobox KeyDown event handler firing multiple timesproudgeekdad2008-12-08T22:25:36Z2008-12-08T22:25:36Z<p>Ironically, adding cbx.Focus() after the search has been performed fixed the problem. Here is the solution.</p>
<pre><code>Private Sub cbx_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles cbx.KeyDown
Me.Cursor = Cursors.IBeam
If e.KeyData = Keys.Enter Then
Me.Cursor = Cursors.WaitCursor
PerformSearch()
cbx.Focus()
Me.Cursor = Cursors.Default
End If
Me.Cursor = Cursors.Default
End Sub
</code></pre>